JVM_IR KT-43877 fix generic signatures for SAM-converted lambdas
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
fun <T> test(): String {
|
||||
val x = object {
|
||||
fun <S> foo() = "OK"
|
||||
}
|
||||
return x.foo<Any>()
|
||||
}
|
||||
|
||||
fun box() = test<Int>()
|
||||
Reference in New Issue
Block a user