aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/cpp/limit-debug-info/base.cpp
blob: 062eaa3c6f268f4d499c5d2cc3ccaba37b2ceadd (plain)
1
2
3
4
5
6
7
#include "base.h"

FooBase::FooBase() : x(12345) {}
ns::Foo2Base::Foo2Base() : x(23456) {}

void FooBase::bar() {}
void ns::Foo2Base::bar() {}