[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / inherit-attribute / a.h
blob04aabe9e8c61119cf032030af6da7886ef0a54c1
1 #ifndef FOO
2 #define FOO
4 class Foo {
5 public:
6 void step(int v);
7 Foo();
8 };
10 #endif