File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ // RUN: rm -rf %t
2
+ // RUN: split-file %s %t
3
+
4
+
5
+ // RUN: %clang -std=c++20 -fmodule-header %t/A.h -o %t/A.pcm
6
+ // RUN: %clang -std=c++20 -fmodule-header %t/B.h -o %t/B.pcm
7
+ // RUN: %clang -std=c++20 -fsyntax-only -fmodule-file=%t/A.pcm -fmodule-file=%t/B.pcm %t/main.cpp
8
+
9
+ // --- A.h
10
+ // expected-no-diagnostics
11
+ enum { A = 0 };
12
+
13
+ // --- B.h
14
+ // expected-no-diagnostics
15
+ enum { B = 1 };
16
+
17
+ // --- main.cpp
18
+ // expected-no-diagnostics
19
+ import " A.h" ;
20
+ import " B.h" ;
21
+ int main () {}
Original file line number Diff line number Diff line change @@ -935,7 +935,7 @@ <h2 id="cxx20">C++20 implementation status</h2>
935
935
</ tr >
936
936
< tr >
937
937
< td > < a href ="https://wg21.link/p2115r0 "> P2115R0</ a > </ td >
938
- < td class ="partial " align ="center "> Partial </ td >
938
+ < td class ="full " align ="center "> Yes </ td >
939
939
</ tr >
940
940
< tr >
941
941
< td > < a href ="https://wg21.link/p1815r2 "> P1815R2</ a > </ td >
You can’t perform that action at this time.
0 commit comments