12 lines
242 B
Kotlin
Vendored
12 lines
242 B
Kotlin
Vendored
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"
|
|
} |