aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/gmodules/template-with-same-arg/main.cpp
blob: 1117b540f3ce09e22f0124326b680b6be9e171aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "module1.h"
#include "module2.h"

int main() {
  ClassInMod1 FromMod1;
  ClassInMod2 FromMod2;

  FromMod1.VecInMod1.Member = 137;
  FromMod2.VecInMod2.Member = 42;

  return 0;
}