[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / merge-template-friend.cpp
blob37508a6c639094a28f3a1f72d3242fa4e3afefd3
1 // RUN: rm -rf %t
2 //
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c++ -fmodules-cache-path=%t \
4 // RUN: -emit-module -fmodule-name=a -o %t/a.pcm \
5 // RUN: %S/Inputs/merge-template-friend/module.modulemap
6 //
7 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c++ -fmodules-cache-path=%t \
8 // RUN: -emit-module -fmodule-name=b -o %t/b.pcm \
9 // RUN: %S/Inputs/merge-template-friend/module.modulemap
11 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -x c++ -fmodules-cache-path=%t \
12 // RUN: -I%S/Inputs/merge-template-friend \
13 // RUN: -fmodule-file=%t/a.pcm \
14 // RUN: -fmodule-file=%t/b.pcm \
15 // RUN: -verify %s
17 #include "friend.h"
18 #include "def.h"
20 ::ns::C<int> c;
22 // expected-no-diagnostics