]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / cpp / limit-debug-info / derived.h
1 #include "base.h"
2
3 class Foo : public FooNS
4 {
5 public:
6     Foo() {
7         a = 12345;
8     }
9
10     char baz() override;
11     int a;
12 };
13