xref: /llvm-project/clang/test/Modules/Inputs/string_names/module.modulemap (revision a171d248ca34b8b6f8de11d42a83ad981285963a)
1*a171d248SMichael Spencermodule "my/module-a" {
2*a171d248SMichael Spencer  header "a.h"
3*a171d248SMichael Spencer  use "my/module-c"
4*a171d248SMichael Spencer
5*a171d248SMichael Spencer  module "Sub" {
6*a171d248SMichael Spencer    header "sub.h"
7*a171d248SMichael Spencer  }
8*a171d248SMichael Spencer}
9*a171d248SMichael Spencer
10*a171d248SMichael Spencermodule "my/module-b" {
11*a171d248SMichael Spencer  header "b.h"
12*a171d248SMichael Spencer}
13*a171d248SMichael Spencer
14*a171d248SMichael Spencermodule "my/module-c" {
15*a171d248SMichael Spencer  header "c.h"
16*a171d248SMichael Spencer}
17