About
Contact
QtCreator
KDevelop
Solarized
1
// Helper that the lldb command `statistics dump` works in split-dwarf mode.
2
3
struct
Baz
{
4
int
x
;
5
bool
y
;
6
};
7
8
void
baz
() {
9
Baz
b
;
10
b
.
x
=
1
;
11
b
.
y
=
true
;
12
}
13