llvm/clang/test/Modules/Inputs/inherit-attribute/a.h

#ifndef FOO
#define FOO

class Foo {
public:
  void step(int v);
  Foo();
};

#endif