1// Can't assign to type "const uniform int32 \* const varying"
2
3void foo(const int * const p) {
4    ++p;
5}
6