Files
kotlin-fork/compiler/testData/codegen/box/classes/kt454.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

6 lines
134 B
Kotlin

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