[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / pr60486.cppm
blob13802a4917e6e7f13a979af39606064eb1cca08c
1 // Address: https://github.com/llvm/llvm-project/issues/60486
2 //
3 // RUN: rm -rf %t
4 // RUN: mkdir -p %t
5 // RUN: split-file %s %t
6 //
7 // RUN: %clang_cc1 -std=c++20 %t/a.cppm -emit-module-interface -o %t/a.pcm
8 // RUN: %clang_cc1 -std=c++20 -fmodule-file=a=%t/a.pcm %t/b.cppm -fsyntax-only -verify
10 //--- foo.h
11 template<typename = void>
12 struct s {
15 template<typename>
16 concept c = requires { s{}; };
18 //--- a.cppm
19 module;
20 #include "foo.h"
21 export module a;
23 //--- b.cppm
24 // expected-no-diagnostics
25 module;
26 #include "foo.h"
27 export module b;
28 import a;