mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
6 lines
151 B
Plaintext
6 lines
151 B
Plaintext
>>> fun foo() = 765
|
|
>>> foo(1)
|
|
ERROR: /line2.kts: (1, 5) Too many arguments for internal final fun foo(): kotlin.Int defined in <script>
|
|
>>> foo()
|
|
765
|