1#include "derived.h"
2
3Foo::Foo() { a = 12345; }
4ns::Foo2::Foo2() { a = 23456; }
5
6Foo foo1;
7Foo foo2;
8
9ns::Foo2 foo2_1;
10ns::Foo2 foo2_2;
11

source code of lldb/test/API/lang/cpp/limit-debug-info/derived.cpp