Files
kotlin-fork/compiler/testData/diagnostics/tests/cast/WhenErasedDisallowFromAny.fir.kt
T

6 lines
86 B
Kotlin
Vendored

fun ff(l: Any) = when(l) {
is MutableList<String> -> 1
else <!SYNTAX!>2<!>
}