aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/def_alias.bad
blob: a02d2168520be75831ca51046128c57d1cd1e428 (plain)
1
2
3
4
5
6
7
8
9
10
11

/* ERRORS */
int alias a = 0;
(alias int x) b;
alias var int c = 0;
alias alias int d;

/* ERRORS */
int alias f() { return 1; }
int g() alias { return 1; }