xref: /llvm-project/clang/test/Modules/Inputs/inherit-attribute/a.h (revision aca191cce1c4dbab28a65cfe4caa6348e698a2b3)
1 #ifndef FOO
2 #define FOO
3 
4 class Foo {
5 public:
6   void step(int v);
7   Foo();
8 };
9 
10 #endif
11