llvm/lldb/test/Shell/SymbolFile/NativePDB/Inputs/incomplete-tag-type.cpp

struct A {
  int x;
  A();
};
A::A() : x(47) {}

struct C {
  C();
};
C::C() = default;

struct E {
  E();
};
E::E() = default;