Files
kotlin-fork/compiler/testData/repl/analyzeErrors.repl
T
2015-09-08 02:04:54 +03:00

8 lines
159 B
Plaintext
Vendored

>>> fun foo() = 765
>>> foo(1)
/line2.kts:1:5: error: too many arguments for public final fun foo(): kotlin.Int defined in <script>
foo(1)
^
>>> foo()
765