Files
kotlin/compiler/testData/repl/analyzeErrors.repl
Pavel V. Talanov ad58617753 Script refactoring, codegen tests: change test data according to semantics change
Add some new tests for uncovered cases
2015-11-19 22:57:01 +03:00

8 lines
140 B
Plaintext
Vendored

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