Home | History | Annotate | Download | only in format-propagation
      1 struct foo
      2 {
      3 	int X;
      4 	int Y;
      5 	foo(int a, int b) : X(a), Y(b) {}
      6 };
      7 
      8 int main()
      9 {
     10 	foo f(1,2);
     11 	f.X = 4; // Set break point at this line.
     12 	return 0;
     13 }
     14