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