Fix error type for implicit invoke with function literal argument

#KT-11401 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2017-01-09 22:02:54 +03:00
parent 9ff8192aff
commit cff0865c87
22 changed files with 347 additions and 7 deletions
@@ -0,0 +1,10 @@
class TestClass {
inline operator fun <T> invoke(task: () -> T) = task()
}
fun box(): String {
val test = TestClass()
val ok = "OK"
val x = test { return ok }
}