Files
kotlin-fork/compiler/testData/diagnostics/tests/cast/WhenErasedDisallowFromAny.jet
T
2012-03-12 22:54:24 +04:00

8 lines
133 B
Plaintext

import java.util.List;
fun ff(l: Any) = when(l) {
is <!CANNOT_CHECK_FOR_ERASED!>List<String><!> -> 1
else <!SYNTAX!>2<!>
}