brintos

brintos / llvm-project-archived public Read only

0
0
Text · 150 B · 5822fbc Raw
14 lines · cpp
1struct foo2{3	int X;4	int Y;5	foo(int a, int b) : X(a), Y(b) {}6};7 8int main()9{10	foo f(1,2);11	f.X = 4; // Set break point at this line.12	return 0;13}14