Files
clang-p2996/clang/test/Modules/Inputs/inherit-attribute/a.h
Vaibhav Garg aca191cce1 Re-land 7a527f1777 with fixes.
The original commit was reverted in 58c305f466
due to broken bots. This commit corrects the triple and command line paths.
2020-08-21 14:40:09 -04:00

11 lines
85 B
C++

#ifndef FOO
#define FOO
class Foo {
public:
void step(int v);
Foo();
};
#endif