aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/data-formatter/pyobjsynthprovider/main.cpp
blob: 4c13aaccbd0fcdf87a6f90c7e5cb8fb46d4bf679 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct Foo
{
  double x;
  int y;
  Foo() : x(3.1415), y(1234) {}
};

int main() {
  Foo f;
  return 0; // break here
}