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