xref: /llvm-project/clang/test/Modules/Inputs/normal-module-map/module.modulemap (revision a171d248ca34b8b6f8de11d42a83ad981285963a)
1*a171d248SMichael Spencermodule libA {
2*a171d248SMichael Spencer  module a1 { header "a1.h" }
3*a171d248SMichael Spencer  header "a2.h"
4*a171d248SMichael Spencer}
5*a171d248SMichael Spencer
6*a171d248SMichael Spencermodule libB {
7*a171d248SMichael Spencer  header "b1.h"
8*a171d248SMichael Spencer}
9*a171d248SMichael Spencer
10*a171d248SMichael Spencermodule nested_umbrella {
11*a171d248SMichael Spencer  umbrella "nested_umbrella"
12*a171d248SMichael Spencer  module * { }
13*a171d248SMichael Spencer}
14