13 lines
128 B
Kotlin
Vendored
13 lines
128 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
fun foo() {
|
|
if (1==1) {
|
|
1.javaClass
|
|
} else {
|
|
}
|
|
}
|
|
|
|
fun box() = "OK"
|