summaryrefslogtreecommitdiff
path: root/clang/test/PCH/Inputs/chain-decls1.h
blob: 9de446164d6df0c1a575142d3e2a1641335e8c80 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
void f();

struct one {};
void two();

void many(int i);
struct many;
void many(int j);
struct many;

void noret();