Added some tests related to this. Also improved source file position reporting in error reporting.
8 lines
101 B
Plaintext
8 lines
101 B
Plaintext
// Left hand side of assignment statement can't be assigned to
|
|
|
|
int bar(){
|
|
int x;
|
|
4 = x;
|
|
}
|
|
|