Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt2895.kt
T
Mikhael Bogdanov 494828f4cf Unmute jvm ir-tests
2018-08-15 10:26:28 +03:00

16 lines
270 B
Kotlin
Vendored

fun outer() {
fun inner(i: Int) {
if (i > 0){
{
it: Int -> inner(0) // <- invocation of literal itself is generated instead
}.invoke(1)
}
}
inner(1)
}
fun box(): String {
outer()
return "OK"
}