1// Can't assign to type "const varying int32" on left-hand side
2
3void foo(const int * p) {
4    *p = 0;
5}
6