About
Contact
QtCreator
KDevelop
Solarized
1
2
#include
"length.h"
3
4
class
Foo
{
5
public
:
6
A
a
;
7
};
8
9
class
MyA
:
public
A
{
10
};
11
12
int
main
()
13
{
14
Foo
f
;
15
MyA
a
;
16
17
return
length
(
a
);
// break here
18
}
19