mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
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
11 lines
185 B
Plaintext
Vendored
11 lines
185 B
Plaintext
Vendored
>>> fun concat(a: String, b: String, c: String, d: String) = "$a$b$c$d"
|
|
>>> concat(
|
|
... "hel",
|
|
... "lo"
|
|
... ,
|
|
... "wo" +
|
|
... "r", "l" +
|
|
... "d"
|
|
... )
|
|
helloworld
|