1// Can't assign to type "const varying int32" on left-hand
2
3int func() {
4    const int x = 2;
5    ++x;
6}
7