Files
kotlin-fork/backend.native/tests/codegen/boxing/boxing10.kt
T
2017-10-20 18:25:05 +03:00

13 lines
205 B
Kotlin

package codegen.boxing.boxing10
import kotlin.test.*
@Test fun runTest() {
val FALSE: Boolean? = false
if (FALSE != null) {
do {
println("Ok")
} while (FALSE)
}
}