Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / cpp / namespace_definitions / foo.h
blob231a5bb5de86b12d1d8431c004df0dab66146787
1 class ThingInside;
3 namespace Foo {
4 class MyClass {
5 ThingInside *thing;
6 public:
7 MyClass() { }
8 };