Closed JohnCoene closed 2 months ago
Check that return statements are valid, e.g.: no assignment. Given it's a keyword and not a function one might be tempted to write return x = 1
return
return x = 1
We can't sensibly check for that right now, and it should really not be written often: a lot of work for little return.
Check that
return
statements are valid, e.g.: no assignment. Given it's a keyword and not a function one might be tempted to writereturn x = 1