Files
kotlin/compiler/testData/codegen/box/classes/kt454.kt
2015-04-29 14:03:11 +03:00

6 lines
134 B
Kotlin
Vendored

fun box(): String {
var s1 = (l1@ "s")
val s2 = (l2@ if (l3@ true) s1 else null)
return if (s2 == "s") "OK" else "fail"
}