Files
kotlin/compiler/testData/repl/analyzeErrors.repl
Ilya Chernikov 15ccd28e2e Switch old IDE/CLI repls to the new infrastructure
should also fix #KT-5822
2017-05-03 18:11:45 +02:00

8 lines
134 B
Plaintext
Vendored

>>> fun foo() = 765
>>> foo(1)
error: too many arguments for public final fun foo(): Int defined in Line_0
foo(1)
^
>>> foo()
765