xref: /llvm-project/clang/test/Index/Inputs/module.modulemap (revision a171d248ca34b8b6f8de11d42a83ad981285963a)
1// See vfsoverlay.yaml
2module ModuleNeedsVFS {
3  header "ModuleNeedsVFS.h"
4  export *
5}
6framework module * { }
7
8module ModuleUndef { header "module-undef.h" }
9
10module PreambleWithImplicitImport {
11  module A {
12    header "preamble-with-implicit-import-A.h"
13  }
14  module B {
15    header "preamble-with-implicit-import-B.h"
16    export *
17  }
18  module C {
19    header "preamble-with-implicit-import-C.h"
20    export *
21  }
22}
23
24module hidden_redecls {
25  header "hidden-redecls.h"
26
27  explicit module sub {
28    header "hidden-redecls-sub.h"
29  }
30}
31