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

Provided by KDAB

Privacy Policy
Improve your Profiling and Debugging skills
Find out more

source code of lldb/test/API/lang/cpp/incomplete-types/main.cpp