3d8d92c7d3
- test data files renamed from *.jet to *.kt
9 lines
134 B
Kotlin
9 lines
134 B
Kotlin
fun test() {
|
|
val out : Int? = null
|
|
val x : Nothing? = null
|
|
if (out != x)
|
|
out.plus(1)
|
|
if (out == x) return
|
|
out.plus(1)
|
|
}
|