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=%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=%t/A_Foo.pcm -o %t/A.pcm
17 // RUN: %clang_cc1 -std=c++20 -emit-obj %t/std10-1-ex1-tu4.cpp \
18 // RUN: -fmodule-file=%t/A.pcm -o %t/ex1.o
20 // expected-no-diagnostics
22 //--- std10-1-ex1-tu1.cpp
27 //--- std10-1-ex1-tu2.cpp
33 export
int foo() { return 2 * (bar() + 1); }
35 //--- std10-1-ex1-tu3.cpp
41 //--- std10-1-ex1-tu4.cpp
47 int bar() { return baz() - 10; }
48 int baz() { return 30; }