[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / shadowed-submodule / A2 / module.modulemap
blobc4e44b074aa14a6f098b326218cd4e6f63a433dd
1 module A [system] {
2   module sub {
3     header "sys/A.h"
4   }
5   module sub2 { // expected-error {{build a shadowed submodule 'A.sub2'}}
6     header "sys/A2.h"
7   }
8   module stdarg {
9     header "stdarg.h"
10     export *
11   }
14 module A2 {}