Files
kotlin-fork/compiler/testData/codegen/box/functions/localFunctions/kt4119.kt
T
2013-10-24 17:24:45 +04:00

12 lines
224 B
Kotlin

fun foo(f: (Int?) -> Int): Int {
return f(0)
}
fun box() : String {
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"
}