xref: /llvm-project/clang/test/CXX/module/module.unit/p7/Inputs/h7.h (revision 9791b589516b644a6273607b46a9c6661993d667)
1 #ifndef H7_H
2 #define H7_H
3 
4 extern "C++" {
5 class A {};
6 }
7 
8 class B : public A {};
9 
10 #endif
11