Files
kotlin-fork/compiler/testData/codegen/regressions/kt239.kt
T
2013-01-24 21:12:27 +04:00

6 lines
98 B
Kotlin

fun box() : String {
val i : Int? = 0
val j = i?.plus(3) //verify error
return "OK"
}