1 // The example in the standard is not in required build order.
6 // RUN: split-file %s %t
8 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex1-tu1.cpp \
9 // RUN: -o %t/A_Internals.pcm
11 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex1-tu2.cpp \
12 // RUN: -fmodule-file=A:Internals=%t/A_Internals.pcm -o %t/A_Foo.pcm
14 // RUN: %clang_cc1 -std=c++20 -emit-module-interface %t/std10-1-ex1-tu3.cpp \
15 // RUN: -fmodule-file=A:Foo=%t/A_Foo.pcm -fmodule-file=A:Internals=%t/A_Internals.pcm \
18 // RUN: %clang_cc1 -std=c++20 -emit-obj %t/std10-1-ex1-tu4.cpp \
19 // RUN: -fmodule-file=A=%t/A.pcm -fmodule-file=A:Foo=%t/A_Foo.pcm \
20 // RUN: -fmodule-file=A:Internals=%t/A_Internals.pcm -o %t/ex1.o
22 // RUN: rm %t/A_Internals.pcm %t/A_Foo.pcm %t/A.pcm
23 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex1-tu1.cpp \
24 // RUN: -o %t/A_Internals.pcm
26 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex1-tu2.cpp \
27 // RUN: -fmodule-file=A:Internals=%t/A_Internals.pcm -o %t/A_Foo.pcm
29 // RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %t/std10-1-ex1-tu3.cpp \
30 // RUN: -fmodule-file=A:Internals=%t/A_Internals.pcm \
31 // RUN: -fmodule-file=A:Foo=%t/A_Foo.pcm -o %t/A.pcm
33 // RUN: %clang_cc1 -std=c++20 -emit-obj %t/std10-1-ex1-tu4.cpp \
34 // RUN: -fmodule-file=A:Internals=%t/A_Internals.pcm \
35 // RUN: -fmodule-file=A:Foo=%t/A_Foo.pcm \
36 // RUN: -fmodule-file=A=%t/A.pcm -o %t/ex1.o
38 // expected-no-diagnostics
40 //--- std10-1-ex1-tu1.cpp
45 //--- std10-1-ex1-tu2.cpp
51 export
int foo() { return 2 * (bar() + 1); }
53 //--- std10-1-ex1-tu3.cpp
59 //--- std10-1-ex1-tu4.cpp
65 int bar() { return baz() - 10; }
66 int baz() { return 30; }