aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/def_function_prototype.good
blob: fe1d11944f0c1da17cf6d519ccfe0822ba80394c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

() a();
(int) b();
() c(int);
(int rr) d(int xx);
(int rr, int ss) e(int xx, int yy);
(()) f(());
(int rr, (int ss) tt) g();
() h(int xx, (int yy) zz);

int i();
int j(int xx);
int k(int xx, int yy);
(int()^) l(int()^);
int()^ m();
int()^ n(int()^);