Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / cpp / limit-debug-info / derived.h
blob8f95c52a595f07361ec0c78f638346de69481f92
1 #include "base.h"
3 class Foo : public FooNS
5 public:
6 Foo();
8 // Deliberately defined by hand.
9 Foo &operator=(const Foo &rhs) {
10 a = rhs.a;
11 return *this;
14 char baz() override;
15 int a;
18 extern Foo foo1;
19 extern Foo foo2;