1// Can't assign to type "const uniform int[0-9]*" on left-hand side of expression
2
3int bar(){
4    int x;
5    4 = x;
6}
7
8