xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/Inputs/submodules/module.map (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1module std {
2  module vector { header "vector.h" }
3  module type_traits { header "type_traits.h" }
4  explicit module hash_map { header "hash_map.h" }
5}
6
7module import_self {
8  module a { header "import-self-a.h" }
9  module b { header "import-self-b.h" export * }
10  module c { header "import-self-c.h" }
11  module d { header "import-self-d.h" }
12}
13