4 // RUN: split-file %s %t
6 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex2-tu1.cpp \
9 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex2-tu2.cpp \
10 // RUN: -fmodule-file=B:Y=%t/B_Y.pcm -o %t/B.pcm
12 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex2-tu3.cpp \
13 // RUN: -o %t/B_X1.pcm -verify
15 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex2-tu4.cpp \
16 // RUN: -fmodule-file=B=%t/B.pcm -fmodule-file=B:Y=%t/B_Y.pcm -o %t/B_X2.pcm
18 // RUN: %clang_cc1 -std=c++20 -emit-obj %t/std10-1-ex2-tu5.cpp \
19 // RUN: -fmodule-file=B=%t/B.pcm -fmodule-file=B:Y=%t/B_Y.pcm -o %t/b_tu5.o
21 // RUN: %clang_cc1 -std=c++20 -S %t/std10-1-ex2-tu6.cpp \
22 // RUN: -fmodule-file=B=%t/B.pcm -fmodule-file=B:Y=%t/B_Y.pcm -o %t/b_tu6.s -verify
24 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex2-tu7.cpp \
25 // RUN: -fmodule-file=B:X2=%t/B_X2.pcm -fmodule-file=B=%t/B.pcm \
26 // RUN: -fmodule-file=B:Y=%t/B_Y.pcm -o %t/B_X3.pcm -verify
28 // Test again with reduced BMI.
29 // RUN: rm %t/B_X2.pcm %t/B.pcm %t/B_Y.pcm
30 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex2-tu1.cpp \
33 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex2-tu2.cpp \
34 // RUN: -fmodule-file=B:Y=%t/B_Y.pcm -o %t/B.pcm
36 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex2-tu3.cpp \
37 // RUN: -o %t/B_X1.pcm -verify
39 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex2-tu4.cpp \
40 // RUN: -fmodule-file=B=%t/B.pcm -fmodule-file=B:Y=%t/B_Y.pcm -o %t/B_X2.pcm
42 // RUN: %clang_cc1 -std=c++20 -emit-obj %t/std10-1-ex2-tu5.cpp \
43 // RUN: -fmodule-file=B=%t/B.pcm -fmodule-file=B:Y=%t/B_Y.pcm -o %t/b_tu5.o
45 // RUN: %clang_cc1 -std=c++20 -S %t/std10-1-ex2-tu6.cpp \
46 // RUN: -fmodule-file=B=%t/B.pcm -fmodule-file=B:Y=%t/B_Y.pcm -o %t/b_tu6.s -verify
48 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex2-tu7.cpp \
49 // RUN: -fmodule-file=B:X2=%t/B_X2.pcm -fmodule-file=B=%t/B.pcm \
50 // RUN: -fmodule-file=B:Y=%t/B_Y.pcm -o %t/B_X3.pcm -verify
52 //--- std10-1-ex2-tu1.cpp
55 // expected-no-diagnostics
57 //--- std10-1-ex2-tu2.cpp
61 // expected-no-diagnostics
63 //--- std10-1-ex2-tu3.cpp
64 module B
:X1
; // does not implicitly import B
65 int &a
= n
; // expected-error {{use of undeclared identifier }}
67 //--- std10-1-ex2-tu4.cpp
68 module B
:X2
; // does not implicitly import B
71 // expected-no-diagnostics
73 //--- std10-1-ex2-tu5.cpp
74 module B
; // implicitly imports B
76 // expected-no-diagnostics
78 //--- std10-1-ex2-tu6.cpp
80 // error, n is module-local and this is not a module.
81 int &c
= n
; // expected-error {{declaration of 'n' must be imported}}
82 // expected-note@* {{declaration here is not visible}}
84 //--- std10-1-ex2-tu7.cpp
85 // expected-no-diagnostics
86 module B
:X3
; // does not implicitly import B
87 import
:X2
; // X2 is an implementation unit import B.
88 // According to [module.import]p7:
89 // Additionally, when a module-import-declaration in a module unit of some
90 // module M imports another module unit U of M, it also imports all
91 // translation units imported by non-exported module-import-declarations in
92 // the module unit purview of U.
94 // So B is imported in B:X3 due to B:X2 imported B. So n is visible here.