[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / pr67627.cppm
blob3d4410229080a983fa16b04c42b09329780b20a8
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 -fmodule-file=A=%t/A.pcm -fsyntax-only -verify
8 //--- A.cppm
9 export module A;
11 //--- B.cppm
12 import A; // expected-note {{add 'module;' to the start of the file to introduce a global module fragment}}
13 export module B; // expected-error {{module declaration must occur at the start of the translation unit}}