xref: /llvm-project/lldb/test/API/lang/cpp/gmodules/template-with-same-arg/module.modulemap (revision 3004a759bcdf7b0a2a3a4220ed216d20defbd081)
1*3004a759SMichael Buchmodule Module1 {
2*3004a759SMichael Buch  header "module1.h"
3*3004a759SMichael Buch  export *
4*3004a759SMichael Buch}
5*3004a759SMichael Buch
6*3004a759SMichael Buchmodule Module2 {
7*3004a759SMichael Buch  header "module2.h"
8*3004a759SMichael Buch  export *
9*3004a759SMichael Buch}
10*3004a759SMichael Buch
11*3004a759SMichael Buchmodule BaseModule {
12*3004a759SMichael Buch  header "base_module.h"
13*3004a759SMichael Buch  export *
14*3004a759SMichael Buch}
15