Files
kotlin/compiler/testData/repl/functionOverloadResolution.repl
2014-08-13 15:13:19 +04:00

5 lines
51 B
Plaintext

>>> fun foo() = 10
>>> fun foo() = 11
>>> foo()
11