aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/gmodules/template-with-same-arg/module.modulemap
blob: ec0d7c561450ee721e6b7438704c1a4f95dad23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Module1 {
  header "module1.h"
  export *
}

module Module2 {
  header "module2.h"
  export *
}

module BaseModule {
  header "base_module.h"
  export *
}