Sign in
llvm
/
llvm-project
/
lldb
/
42b7a85e11c8017d38566b18e9635b75adfb4cb6
/
.
/
test
/
API
/
functionalities
/
data-formatter
/
pyobjsynthprovider
/
main.cpp
blob: 4c13aaccbd0fcdf87a6f90c7e5cb8fb46d4bf679 [
file
] [
log
] [
blame
]
struct
Foo
{
double
x
;
int
y
;
Foo
()
:
x
(
3.1415
),
y
(
1234
)
{}
};
int
main
()
{
Foo
f
;
return
0
;
// break here
}