bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/other.cpp
2025-02-14 19:21:04 +01:00

10 lines
112 B
C++

#include "shared.h"
struct WrapperB {
OuterY y;
OuterX x;
};
WrapperB* foo() {
return new WrapperB();
}