]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.h
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / cpp / limit-debug-info / base.h
1 class FooNS
2 {
3 public:
4     virtual void bar();
5     virtual char baz() = 0;
6
7 protected:
8     int x;
9 };
10