[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / pr102684.cppm
blob113edbf548a5d6609743cfb2d7a894e6e5cd6a92
1 // RUN: rm -rf %t
2 // RUN: mkdir -p %t
3 // RUN: split-file %s %t
4 //
5 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
6 // RUN: %clang_cc1 -std=c++20 %t/b.cppm -emit-module-interface -o %t/b.pcm \
7 // RUN:   -fprebuilt-module-path=%t
8 // RUN: %clang_cc1 -std=c++20 %t/test.cpp -fsyntax-only -verify \
9 // RUN:   -fprebuilt-module-path=%t
11 //--- a.cppm
12 export module a;
14 namespace n {
15 template<typename, int...>
16 struct integer_sequence {
20 export template<typename>
21 using make_integer_sequence = __make_integer_seq<integer_sequence, int, 0>;
24 //--- b.cppm
25 export module b;
26 import a;
28 export template<typename T>
29 void b() {
30         n::make_integer_sequence<T>();
33 //--- test.cpp
34 // expected-no-diagnostics
35 import b;
36 void test() {
37   b<int>();