Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt2593.kt
T
2018-12-21 16:09:05 +01:00

13 lines
128 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
// WITH_RUNTIME
fun foo() {
if (1==1) {
1.javaClass
} else {
}
}
fun box() = "OK"