3 // RUN: split-file %s %t
5 // RUN: %clang_cc1 -std=c++20 %t/mod1.cppm -emit-module-interface -o %t/mod1.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/mod2.cppm -emit-module-interface -o %t/mod2.pcm \
7 // RUN: -fprebuilt-module-path=%t
8 // RUN: %clang_cc1 -std=c++20 %t/mod3.cppm -fsyntax-only -verify \
9 // RUN: -fprebuilt-module-path=%t
11 // RUN: %clang_cc1 -std=c++20 %t/mod1.cppm -emit-obj -o %t/mod1.o -fmodule-output=%t/mod1.pcm
12 // RUN: %clang_cc1 -std=c++20 %t/mod2.cppm -emit-obj -o %t/mod2.o -fmodule-output=%t/mod2.pcm \
13 // RUN: -fprebuilt-module-path=%t
14 // RUN: %clang_cc1 -std=c++20 %t/mod3.cppm -fsyntax-only -verify \
15 // RUN: -fprebuilt-module-path=%t
20 export template<class T>
29 export template<class U>
35 // expected-no-diagnostics
39 export int mod3_h(int p) {