Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/kt10706.kt
T
Stanislav Erokhin 298a075381 Minor. removed functions which declared in Standard.kt from diagnostic testdata.
Removed declaration for functions: TODO, run, with, apply, let.
2016-01-25 19:13:31 +03:00

10 lines
298 B
Kotlin
Vendored

fun fn(c: Char?): Any? =
if (c == null) TODO()
else when (<!DEBUG_INFO_SMARTCAST!>c<!>) {
'a' -> when (<!DEBUG_INFO_SMARTCAST!>c<!>) {
'B' -> 1
'C' -> "sdf"
else -> TODO()
}
else -> TODO()
}