[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / merge-vtable-codegen / a.h
blobc2885379aa414f427ba18a624e4c8386a10935b8
1 #ifndef A_H
2 #define A_H
4 struct A {
5 virtual void x();
6 };
8 #endif