aboutsummaryrefslogtreecommitdiff
path: root/test/Modules/Inputs/macro-hiding/module.modulemap
blob: 20632d35aebc014ebd9498e7aefc47e85245b0a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module a {
  module a1 { header "a1.h" export * }
  module a2 { header "a2.h" export * }
}
module b {
  module b1 { header "b1.h" export * }
  module b2 { header "b2.h" export * }
}
module c {
  module c1 { header "c1.h" export * }
}
module d {
  module d1 { header "d1.h" export * }
}
module e {
  module e1 { header "e1.h" export * }
  module e2 { header "e2.h" export * }
}