1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
9 lines
164 B
Kotlin
9 lines
164 B
Kotlin
public fun box() : String {
|
|
var i : Int?
|
|
i = 10
|
|
// assignPlus on a smart cast should work
|
|
i += 1
|
|
|
|
return if (11 == i) "OK" else "fail i = $i"
|
|
}
|