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,18 @@
// WITH_SIGNATURES
fun <T> test() {
val x = object {
fun <S1> foo() {}
fun <S2> S2.ext() {}
val <S3> S3.extVal
get() = 1
var <S4> S4.extVar
get() = 1
set(value) {}
}
x.foo<Any>()
}