Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / named-modules-adl-2.cppm
blob655acfcd93f69ab8db0f7d75d76f0da757cfbcd8
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: cd %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 -fmodule-file=a=%t/a.pcm -emit-module-interface -o %t/b.pcm
7 // RUN: %clang_cc1 -std=c++20 %t/c.cppm -fmodule-file=a=%t/a.pcm -fmodule-file=b=%t/b.pcm -fsyntax-only -verify
9 //--- a.cppm
10 export module a;
12 export template<typename T>
13 void a(T x) {
14         +x;
17 //--- b.h
18 struct s {
20 void operator+(s) {
23 //--- b.cppm
24 module;
25 #include "b.h"
26 export module b;
27 import a;
29 export template<typename T>
30 void b() {
31         a(s());
34 //--- c.cppm
35 // expected-no-diagnostics
36 export module c;
37 import b;
39 void c() {
40         b<int>();