Add "Suspicious collection reassignment" inspection #KT-20626 Fixed

This commit is contained in:
Mikhail Glukhikh
2018-11-29 16:23:00 +03:00
parent 3e936f64bf
commit c560aada3d
68 changed files with 1201 additions and 0 deletions
@@ -0,0 +1,6 @@
// FIX: Change type to mutable
// WITH_RUNTIME
fun test() {
val list = mutableListOf(1)<caret>
list += 2
}