1 // This comes from the issue report of MSVC
2 // (https://developercommunity.visualstudio.com/t/c20-modules-unresolved-external-symbol/10049210).
6 // RUN: split-file %s %t
8 // RUN: %clang_cc1 -std=c++20 %t/base.cppm -emit-module-interface -o %t/package-base.pcm
9 // RUN: %clang_cc1 -std=c++20 %t/child.cppm -emit-module-interface -o %t/package-child.pcm \
10 // RUN: -fprebuilt-module-path=%t
11 // RUN: %clang_cc1 -std=c++20 %t/package.cppm -emit-module-interface -o %t/package.pcm \
12 // RUN: -fprebuilt-module-path=%t
13 // RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
15 // Test again with reduced BMI
18 // RUN: split-file %s %t
20 // RUN: %clang_cc1 -std=c++20 %t/base.cppm -emit-reduced-module-interface -o %t/package-base.pcm
21 // RUN: %clang_cc1 -std=c++20 %t/child.cppm -emit-reduced-module-interface -o %t/package-child.pcm \
22 // RUN: -fprebuilt-module-path=%t
23 // RUN: %clang_cc1 -std=c++20 %t/package.cppm -emit-reduced-module-interface -o %t/package.pcm \
24 // RUN: -fprebuilt-module-path=%t
25 // RUN: %clang_cc1 -std=c++20 %t/use.cpp -fsyntax-only -verify -fprebuilt-module-path=%t
28 export module package:base;
33 template<class> struct base
40 export module package:child;
44 export struct child : base<void> {};
47 child base<T>::getChild() { return {}; }
50 export module package;
56 // expected-no-diagnostics
61 base<void>{}.getChild();
62 base<int>{}.getChild();