xref: /llvm-project/lldb/test/API/lang/cpp/limit-debug-info/base.cpp (revision 9677e8171c19f1a15c0234724f083bc9473c545a)
1 #include "base.h"
2 
FooBase()3 FooBase::FooBase() : x(12345) {}
Foo2Base()4 ns::Foo2Base::Foo2Base() : x(23456) {}
5 
bar()6 void FooBase::bar() {}
bar()7 void ns::Foo2Base::bar() {}
8