xref: /llvm-project/lldb/test/API/lang/cpp/gmodules/template-with-same-arg/main.cpp (revision 3004a759bcdf7b0a2a3a4220ed216d20defbd081)
1 #include "module1.h"
2 #include "module2.h"
3 
4 #include <cstdio>
5 
main()6 int main() {
7   ClassInMod1 FromMod1;
8   ClassInMod2 FromMod2;
9 
10   FromMod1.VecInMod1.Member = 137;
11   FromMod2.VecInMod2.Member = 42;
12 
13   std::puts("Break here");
14   return 0;
15 }
16