968dfddbc9
- remove obsolete `IGNORE_BACKEND: JVM` directives - move contents of .ir.txt files to the corresponding .txt
12 lines
134 B
Kotlin
Vendored
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) }
|
|
}
|