Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt2593.kt
T
2018-06-09 19:15:38 +03:00

15 lines
233 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
// WITH_RUNTIME
fun foo() {
if (1==1) {
1.javaClass
} else {
}
}
fun box() = "OK"