JVM_IR KT-43877 fix generic signatures for SAM-converted lambdas

This commit is contained in:
Dmitry Petrov
2020-12-11 15:41:02 +03:00
parent dc11c2de77
commit b7330a9e14
56 changed files with 1014 additions and 59 deletions
@@ -0,0 +1,8 @@
fun <T> test(): String {
val x = object {
fun <S> foo() = "OK"
}
return x.foo<Any>()
}
fun box() = test<Int>()