llvm/clang/test/Modules/Inputs/merge-vtable-codegen/a.h

#ifndef A_H
#define A_H

struct A {
  virtual void x();
};

#endif