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