Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / seperated-member-function-definition-for-template-class.cppm
blobe32da39d9df1af4edb007a4f30dbf4542e5bb2d5
1 // This comes from the issue report of MSVC
2 // (https://developercommunity.visualstudio.com/t/c20-modules-unresolved-external-symbol/10049210).
3 //
4 // RUN: rm -rf %t
5 // RUN: mkdir %t
6 // RUN: split-file %s %t
7 //
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 //--- base.cppm
16 export module package:base;
18 export struct child;
20 export
21 template<class> struct base
23         child getChild();
27 //--- child.cppm
28 export module package:child;
30 import :base;
32 export struct child : base<void> {};
34 template<class T>
35 child base<T>::getChild() { return {}; }
37 //--- package.cppm
38 export module package;
40 export import :base;
41 export import :child;
43 //--- use.cpp
44 // expected-no-diagnostics
45 import package;
47 int use()
49         base<void>{}.getChild();
50         base<int>{}.getChild();
51         return 0;