xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/Inputs/chain-decls2.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc void g();
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc struct two {};
4*f4a2713aSLionel Sambuc void one();
5*f4a2713aSLionel Sambuc struct three {}; // for verification
6*f4a2713aSLionel Sambuc 
7*f4a2713aSLionel Sambuc void many(int k);
8*f4a2713aSLionel Sambuc struct many;
9*f4a2713aSLionel Sambuc void many(int l);
10*f4a2713aSLionel Sambuc struct many {};
11*f4a2713aSLionel Sambuc 
12*f4a2713aSLionel Sambuc void noret() __attribute__((noreturn));
13