[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / named-modules-adl.cppm
blobd5133ef367265a897299762b43353840067b113d
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 -fsyntax-only -verify
8 //--- a.h
9 namespace n {
11 struct s { };
13 void operator+(s, int) {
16 } // namespace n
18 //--- a.cppm
19 module;
20 #include "a.h"
21 export module a;
23 export template<typename T>
24 void a(T x) {
25         n::s() + x;
28 //--- b.cppm
29 // expected-no-diagnostics
30 export module b;
31 import a;
33 void b() {
34         a(0);