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