summaryrefslogtreecommitdiffstats
path: root/test/Modules/Inputs/PR20399/module.modulemap
blob: 223434adba19bb04d80c2f3ea79cc564cba58983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module stdlib [system] {
    header "stl_map.h"
    header "vector"
 }

module libCore {
  header "SecondHeader.h"
    use stdlib
  export *
}

module libGdml {
  header "FirstHeader.h"
  use libCore
    use stdlib
  export *
}

OpenPOWER on IntegriCloud