aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/main.cpp
blob: 5822fbc2a710f60805aac0c10f050cee9c161bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct foo
{
	int X;
	int Y;
	foo(int a, int b) : X(a), Y(b) {}
};

int main()
{
	foo f(1,2);
	f.X = 4; // Set break point at this line.
	return 0;
}