[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / AST / ast-dump-APValue-anon-union.cpp
blob1ed87e66561496af3d510d942781ba6c80ee7b7b
1 // Test without serialization:
2 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \
3 // RUN: -ast-dump %s -ast-dump-filter Test \
4 // RUN: | FileCheck --strict-whitespace --match-full-lines %s
5 //
6 // Test with serialization:
7 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 -emit-pch -o %t %s
8 // RUN: %clang_cc1 -x c++ -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \
9 // RUN: -include-pch %t -ast-dump-all -ast-dump-filter Test /dev/null \
10 // RUN: | sed -e "s/ <undeserialized declarations>//" -e "s/ imported//" \
11 // RUN: | FileCheck --strict-whitespace --match-full-lines %s
13 struct S0 {
14 union {
15 int i = 42;
19 union U0 {
20 union {
21 float f = 3.1415f;
25 union U1 {
26 union {
27 float f;
31 void Test() {
32 constexpr S0 s0{};
33 // CHECK: | `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} s0 'const S0':'const S0' constexpr listinit
34 // CHECK-NEXT: | |-value: Struct
35 // CHECK-NEXT: | | `-field: Union .i Int 42
37 constexpr U0 u0a{};
38 // CHECK: | `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} u0a 'const U0':'const U0' constexpr listinit
39 // CHECK-NEXT: | |-value: Union None
41 constexpr U0 u0b{3.1415f};
42 // CHECK: | `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} u0b 'const U0':'const U0' constexpr listinit
43 // CHECK-NEXT: | |-value: Union . Union .f Float 3.141500e+00
45 constexpr U1 u1a{};
46 // CHECK: | `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} u1a 'const U1':'const U1' constexpr listinit
47 // CHECK-NEXT: | |-value: Union . Union .f Float 0.000000e+00
49 constexpr U1 u1b{3.1415f};
50 // CHECK: `-VarDecl {{.*}} <col:{{.*}}, col:{{.*}}> col:{{.*}} u1b 'const U1':'const U1' constexpr listinit
51 // CHECK-NEXT: |-value: Union . Union .f Float 3.141500e+00