Fix bug that prohibited assignments with pointer expressions on the LHS
Previously, code like "*(ptr+1) = foo" would claim that the LHS was invalid for an assignment expression. Issue #138.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Left hand side of assignment statement can't be assigned to
|
||||
// Left hand side of assignment expression can't be assigned to
|
||||
|
||||
int foo() {return 2;}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user