xref: /llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-globals/main.cpp (revision cd2e66efa65fd63cf6f48112f49c09489a1baac0)
1 struct Point {
2     int x;
3     int y;
PointPoint4     Point(int X = 3, int Y = 2) : x(X), y(Y) {}
5 };
6 
7 Point g_point(3,4);
8 Point* g_point_pointer = new Point(7,5);
9 
main(int argc,const char * argv[])10 int main (int argc, const char * argv[])
11 {
12     return 0; // Set break point at this line.
13 }
14 
15