d4cb521433
This fixes the ABI issues in KT-42879.
13 lines
157 B
Kotlin
Vendored
13 lines
157 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM
|
|
inline class A(val value: Int)
|
|
|
|
fun interface I {
|
|
fun compute(value: Int): A
|
|
}
|
|
|
|
fun f(i: I) {}
|
|
|
|
fun g() {
|
|
f { it -> A(it) }
|
|
}
|