aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/limit-debug-info/derived.cpp
blob: cbda8e706b520a85d83d4b1e0b69f0e6c5168dc4 (plain)
1
2
3
4
5
6
7
8
9
10
#include "derived.h"

Foo::Foo() { a = 12345; }
ns::Foo2::Foo2() { a = 23456; }

Foo foo1;
Foo foo2;

ns::Foo2 foo2_1;
ns::Foo2 foo2_2;