mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
8 lines
134 B
Plaintext
Vendored
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
|