Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / cxx20-import-diagnostics-b.cpp
blob7d432633552a25a0cc401101ce088237119a7115
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
5 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/a.cpp -o %t/a.pcm
7 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/c.cpp \
8 // RUN: -fmodule-file=a=%t/a.pcm -o %t/c.pcm
10 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/d.cpp \
11 // RUN: -fmodule-file=a=%t/a.pcm -o %t/d.pcm
13 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/e.cpp \
14 // RUN: -fmodule-file=a=%t/a.pcm -o %t/e.pcm
16 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/a-part.cpp \
17 // RUN: -o %t/a-part.pcm
19 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/f.cpp \
20 // RUN: -fmodule-file=a=%t/a.pcm -o %t/f.pcm -verify
22 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/g.cpp \
23 // RUN: -fmodule-file=a=%t/a.pcm -o %t/g.pcm -verify
25 //--- a.cpp
26 export module a;
28 //--- b.hpp
29 import a;
31 //--- c.cpp
32 module;
33 #include "b.hpp"
34 export module c;
36 //--- d.cpp
37 module;
38 import a;
40 export module d;
42 //--- e.cpp
43 export module e;
45 module :private;
46 import a;
48 //--- a-part.cpp
49 export module a:part;
51 //--- f.cpp
52 module;
53 import :part ; // expected-error {{module partition imports cannot be in the global module fragment}}
55 export module f;
57 //--- g.cpp
59 export module g;
60 module :private;
61 import :part; // expected-error {{module partition imports cannot be in the private module fragment}}