aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/expr_as.good
blob: 0ed16fd25b771d5532fc470bb5feda013de6b42c (plain)
1
2
3
4
5
6
7

int8 i8 = 123;

bool a = 0 as float < i8 + 10 as float;
bool b = 0 as float < (i8 + 10) as float;
float c = i8 as float;