llvm/clang/test/Index/Inputs/crash-preamble-classes.h

struct Incomplete;

struct X : Incomplete {
  X();
};

struct Y : X {
  using X::X;
};