1#include "module1.h"
2#include "module2.h"
3
4int main() {
5 ClassInMod1 FromMod1;
6 ClassInMod2 FromMod2;
7
8 FromMod1.VecInMod1.Member = 137;
9 FromMod2.VecInMod2.Member = 42;
10
11 return 0;
12}
13

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of lldb/test/API/lang/cpp/gmodules/template-with-same-arg/main.cpp