Quickfix for CANNOT_CHECK_FOR_ERASED.
This commit is contained in:
committed by
Evgeny Gerashchenko
parent
1f3739415a
commit
64321dce56
+2
@@ -0,0 +1,2 @@
|
||||
// "Change type argument list to <*, *>" "true"
|
||||
fun isStringToIntMap(map : Any) = map is Map<<caret>*, *>
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
fun isStringList(list : Any) = list is List<<caret>*>?
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
fun isStringList(list : Any?) = list is (List<<caret>*>)
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Change type argument list to <*, *>" "true"
|
||||
fun isStringToIntMap(map : Any) = map is Map<<caret>String, Int>
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
fun isStringList(list : Any) = list is List<<caret>String>?
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
// "Change type argument list to <*>" "true"
|
||||
fun isStringList(list : Any?) = list is (List<<caret>String>)
|
||||
Reference in New Issue
Block a user