About
Contact
QtCreator
KDevelop
Solarized
1
struct
Foo
{
2
int
real_child
=
47
;
3
};
4
5
struct
HasFoo
{
6
Foo
f
;
7
};
8
9
int
main
() {
10
Foo
foo
;
11
HasFoo
has_foo
;
12
return
0
;
// break here
13
}
14