Files
kotlin-fork/compiler/testData/ir/irText/expressions/sam/genericSamProjectedOut.fir.kt.txt
T
2021-02-11 11:48:34 +03:00

15 lines
347 B
Plaintext
Vendored

fun test(a: SomeJavaClass<out String>) {
a.someFunction(hello = local fun <anonymous>(it: String?) {
return Unit
}
/*-> Hello<String>? */)
a.plus(hello = local fun <anonymous>(it: String?) {
return Unit
}
/*-> Hello<String>? */)
a.get(hello = local fun <anonymous>(it: String?) {
return Unit
}
/*-> Hello<String>? */)
}