6eb5567895
Check if all of the syntax errors are at EOF, not that there's a single one. In case of open parenthesis two syntax errors are reported for some reason
5 lines
59 B
Plaintext
5 lines
59 B
Plaintext
>>> fun sum(x: Int, y: Int) = x + y
|
|
>>> sum(
|
|
... 23,19)
|
|
42
|