About
Contact
QtCreator
KDevelop
Solarized
1
struct
S
{
2
int
x
;
3
int
y
;
4
5
S
() :
x
(
123
),
y
(
456
) {}
6
};
7
8
int
main
() {
9
S
object
;
10
return
0
;
// break here
11
}
12