Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / class / class.mfct / p1-cxx20.cpp
blob096617f4853bafbcd6f0f3c7395bec41d0fef208
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
4 // RUN: cd %t
5 //
6 // RUN: %clang_cc1 -std=c++20 no-modules.cpp -fsyntax-only -ast-dump | \
7 // RUN: FileCheck --match-full-lines --check-prefix=CHECK-NM %s
8 // RUN: %clang_cc1 -std=c++20 -xc++-user-header header-unit.h -ast-dump | \
9 // RUN: FileCheck --match-full-lines --check-prefix=CHECK-HU %s
10 // RUN: %clang_cc1 -std=c++20 module.cpp -ast-dump | \
11 // RUN: FileCheck --match-full-lines --check-prefix=CHECK-MOD %s
13 //--- no-modules.cpp
15 class X {
16 void x(){};
19 // CHECK-NM: `-CXXRecordDecl {{.*}} <no-modules.cpp:2:1, line:4:1> line:2:7 class X definition
20 // CHECK-NM: |-CXXRecordDecl {{.*}} <col:1, col:7> col:7 implicit class X
21 // CHECK-NM-NEXT: `-CXXMethodDecl {{.*}} <line:3:3, col:12> col:8 x 'void ()' implicit-inline
23 // A header unit header
24 //--- header-unit.h
26 class Y {
27 void y(){};
30 // CHECK-HU: `-CXXRecordDecl {{.*}} <.{{/|\\\\?}}header-unit.h:2:1, line:4:1> line:2:7 class Y definition
31 // CHECK-HU: |-CXXRecordDecl {{.*}} <col:1, col:7> col:7 implicit class Y
32 // CHECK-HU-NEXT: `-CXXMethodDecl {{.*}} <line:3:3, col:12> col:8 y 'void ()' implicit-inline
34 // A textually-included header
35 //--- header.h
37 class A {
38 void a(){};
41 //--- module.cpp
42 module;
43 #include "header.h"
45 export module M;
47 class Z {
48 void z(){};
51 // CHECK-MOD: |-CXXRecordDecl {{.*}} <.{{/|\\\\?}}header.h:2:1, line:4:1> line:2:7 in M.<global> hidden class A definition
52 // CHECK-MOD: | |-CXXRecordDecl {{.*}} <col:1, col:7> col:7 in M.<global> hidden implicit class A
53 // CHECK-MOD-NEXT: | `-CXXMethodDecl {{.*}} <line:3:3, col:12> col:8 in M.<global> hidden a 'void ()' implicit-inline
55 // CHECK-MOD: `-CXXRecordDecl {{.*}} <module.cpp:6:1, line:8:1> line:6:7 in M hidden class Z{{( ReachableWhenImported)?}} definition
56 // CHECK-MOD: |-CXXRecordDecl {{.*}} <col:1, col:7> col:7 in M hidden implicit class Z{{( ReachableWhenImported)?}}
57 // CHECK-MOD-NEXT: `-CXXMethodDecl {{.*}} <line:7:3, col:12> col:8 in M hidden z 'void ()'{{( ReachableWhenImported)?}}