Restore returning of functional types from repl eval

add tests for the broken case as well for the return value representation
#KT-29490 fixed
This commit is contained in:
Ilya Chernikov
2019-01-28 10:47:01 +01:00
parent 52464fd103
commit f125600af1
4 changed files with 22 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
>>> { 1 + 2 }
() -> kotlin.Int
>>> val x = { "abc" }
>>> x
() -> kotlin.String