bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/nested-class-other-compilation-unit/other.cpp

11 lines
112 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include "shared.h"
struct WrapperB {
OuterY y;
OuterX x;
};
WrapperB* foo() {
return new WrapperB();
}