Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / inconsistent-export.cppm
blob5e94d2b37b75785424e2ead4e88171a7efd303da
1 // RUN: rm -fr %t
2 // RUN: mkdir %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/m-a.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-module-interface -o %t/m-b.pcm \
7 // RUN:     -fprebuilt-module-path=%t
8 // RUN: %clang_cc1 -std=c++20 %t/m.cppm -emit-module-interface -o %t/m.pcm \
9 // RUN:     -fprebuilt-module-path=%t
10 // RUN: %clang_cc1 -std=c++20 %t/use.cppm -fprebuilt-module-path=%t -emit-obj
12 //--- a.cppm
13 export module m:a;
14 namespace n {
15 export class a {
16 public:
17     virtual ~a() {}
21 //--- b.cppm
22 export module m:b;
23 namespace n {
24 class a;
27 //--- m.cppm
28 export module m;
29 export import :a;
30 export import :b;
32 //--- use.cppm
33 // expected-no-diagnostics
34 export module u;
35 export import m;
37 struct aa : public n::a {
38     aa() {}
40 auto foo(n::a*) {
41     return;
44 void use() {
45     n::a _;