Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/Jet169.kt
T
2013-12-11 19:53:50 +04:00

9 lines
265 B
Kotlin

fun set(<!UNUSED_PARAMETER!>key<!> : String, <!UNUSED_PARAMETER!>value<!> : String) {
val a : String? = ""
when (a) {
"" -> <!DEBUG_INFO_AUTOCAST!>a<!>.get(0)
is String, is Any -> <!DEBUG_INFO_AUTOCAST!>a<!>.compareTo("")
else -> a.toString()
}
}