Previously, code like "*(ptr+1) = foo" would claim that the LHS was invalid for an assignment expression. Issue #138.
7 lines
105 B
Plaintext
7 lines
105 B
Plaintext
// Can't assign to type "const uniform int32" on left-hand side of expression
|
|
|
|
int bar(){
|
|
4 = 0;
|
|
}
|
|
|