Replaced List and Collection with mutable analogs.

This commit is contained in:
Evgeny Gerashchenko
2012-11-07 18:04:00 +04:00
parent 3318804030
commit 266313a02e
11 changed files with 11 additions and 11 deletions
@@ -1,5 +1,5 @@
fun ff(l: Any) = when(l) {
is <!CANNOT_CHECK_FOR_ERASED!>List<String><!> -> 1
is <!CANNOT_CHECK_FOR_ERASED!>MutableList<String><!> -> 1
else <!SYNTAX!>2<!>
}