aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h
blob: 46b3f83b9f744348d5728e85b1e0084cc5e53e31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "base.h"

class Foo : public FooNS
{
public:
    Foo() {
        a = 12345;
    }

    char baz() override;
    int a;
};