bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/limit-debug-info/derived.h
2025-02-14 19:21:04 +01:00

19 lines
258 B
C++

#include "base.h"
class Foo : public FooNS
{
public:
Foo();
// Deliberately defined by hand.
Foo &operator=(const Foo &rhs) {
a = rhs.a;
return *this;
}
char baz() override;
int a;
};
extern Foo foo1;
extern Foo foo2;