aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/expr_as.bad
blob: 6cf0c857109f38c306d31f8266549076d511f0e9 (plain)
1
2
3
4
5
6
7
8
9

/* ERRORS */
int a = 1 as 1;
int b = 1 as;
int c = 1 as ?;
int d = 1 as 1+1;
int e = 1 as a;
int f = (1 as a).x;
int g = (1 as g)#[1];