Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt4119.kt
T
2018-06-28 12:26:41 +02:00

13 lines
268 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
fun foo(f: (Int?) -> Int): Int {
return f(0)
}
fun box() : String {
infix operator fun Int?.plus(a: Int) : Int = a!! + 2
if (foo { it + 1 } != 3) return "Fail 1"
if (foo { it plus 1 } != 3) return "Fail 2"
return "OK"
}