blob: 01fc33a9a8445820e580cad104e338946ad78c88 [file] [log] [blame]
Sam Weinigce757a72010-01-16 21:21:01 +00001// Test this without pch.
Richard Smith762bb9d2011-10-13 22:29:44 +00002// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -include %S/cxx_exprs.h -std=c++11 -fsyntax-only -verify %s -ast-dump
Sam Weinigce757a72010-01-16 21:21:01 +00003
Argyrios Kyrtzidis5e1b7c22010-06-24 08:57:09 +00004// Test with pch. Use '-ast-dump' to force deserialization of function bodies.
Richard Smith762bb9d2011-10-13 22:29:44 +00005// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -x c++-header -std=c++11 -emit-pch -o %t %S/cxx_exprs.h
6// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-dump
Sam Weinigce757a72010-01-16 21:21:01 +00007
8int integer;
9double floating;
10char character;
Sam Weinigeb7f9612010-02-07 06:32:43 +000011bool boolean;
Sam Weinigce757a72010-01-16 21:21:01 +000012
13// CXXStaticCastExpr
14static_cast_result void_ptr = &integer;
15
16// CXXDynamicCastExpr
17Derived *d;
18dynamic_cast_result derived_ptr = d;
19
20// CXXReinterpretCastExpr
21reinterpret_cast_result void_ptr2 = &integer;
22
23// CXXConstCastExpr
24const_cast_result char_ptr = &character;
25
26// CXXFunctionalCastExpr
27functional_cast_result *double_ptr = &floating;
Sam Weinigeb7f9612010-02-07 06:32:43 +000028
29// CXXBoolLiteralExpr
30bool_literal_result *bool_ptr = &boolean;
31static_assert(true_value, "true_value is true");
32static_assert(!false_value, "false_value is false");
33
34// CXXNullPtrLiteralExpr
35cxx_null_ptr_result null_ptr = nullptr;
Chris Lattner14ab24f2010-05-09 06:03:39 +000036
37// CXXTypeidExpr
38typeid_result1 typeid_1 = 0;
Argyrios Kyrtzidis5e1b7c22010-06-24 08:57:09 +000039typeid_result2 typeid_2 = 0;
Eli Friedmanb3b6c222012-09-14 00:51:36 +000040
41// CharacterLiteral variants
42static_assert(char_value == 97, "char_value is correct");
43static_assert(wchar_t_value == 305, "wchar_t_value is correct");
44static_assert(char16_t_value == 231, "char16_t_value is correct");
45static_assert(char32_t_value == 8706, "char32_t_value is correct");