1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
9 lines
158 B
Kotlin
9 lines
158 B
Kotlin
operator fun Int?.inc() = this!!.inc()
|
|
|
|
public fun box() : String {
|
|
var i : Int? = 10
|
|
val j = i++
|
|
|
|
return if(j==10 && 11 == i) "OK" else "fail"
|
|
}
|