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

11 lines
85 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
#ifndef FOO
#define FOO
class Foo {
public:
void step(int v);
Foo();
};
#endif