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

#include "shared.h"

struct WrapperB {
  OuterY y;
  OuterX x;
};

WrapperB* foo() {
  return new WrapperB();
}