Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/kt42879.kt
T
Alexander Udalov 968dfddbc9 Tests: adjust test data for bytecode listing tests
- remove obsolete `IGNORE_BACKEND: JVM` directives
- move contents of .ir.txt files to the corresponding .txt
2023-11-02 10:59:29 +00:00

12 lines
134 B
Kotlin
Vendored

inline class A(val value: Int)
fun interface I {
fun compute(value: Int): A
}
fun f(i: I) {}
fun g() {
f { it -> A(it) }
}