Files
kotlin/compiler/testData/repl/functionResult.repl
Ilya Chernikov f125600af1 Restore returning of functional types from repl eval
add tests for the broken case as well for the return value representation
#KT-29490 fixed
2019-01-29 15:05:37 +01:00

6 lines
79 B
Plaintext
Vendored

>>> { 1 + 2 }
() -> kotlin.Int
>>> val x = { "abc" }
>>> x
() -> kotlin.String