xref: /llvm-project/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/other.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #include "shared.h"
2 
3 struct WrapperB {
4   OuterY y;
5   OuterX x;
6 };
7 
foo()8 WrapperB* foo() {
9   return new WrapperB();
10 }
11