xref: /aosp_15_r20/external/clang/test/PCH/Inputs/chain-decls1.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 void f();
2 
3 struct one {};
4 void two();
5 
6 void many(int i);
7 struct many;
8 void many(int j);
9 struct many;
10 
11 void noret();
12