summaryrefslogtreecommitdiff
path: root/clang/test/Modules/Inputs/wildcard-submodule-exports/module.map
blob: 64b0d895299ca7a03cba43b4ba4096e22300e2ef (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module A {
  module One { header "A_one.h" }
  module Two { header "A_two.h" }
}

module B {
  module One { header "B_one.h" }
  module Two { header "B_two.h" }
}

module C {
  module One { 
    header "C_one.h" 
    export A.*
  }
  module Two { 
    header "C_two.h"
    export * 
  }
}