About
Contact
QtCreator
KDevelop
Solarized
1
struct
Foo
2
{
3
double
x
;
4
int
y
;
5
Foo
() :
x
(
3.1415
),
y
(
1234
) {}
6
};
7
8
int
main
() {
9
Foo
f
;
10
return
0
;
// break here
11
}
12