0616e869aa
#KT-9931 Fixed
6 lines
146 B
Kotlin
Vendored
6 lines
146 B
Kotlin
Vendored
// "Make variable mutable" "false"
|
|
// ACTION: Remove redundant assignment
|
|
// ERROR: Val cannot be reassigned
|
|
fun fun1(i: Int) {
|
|
<caret>i = 2
|
|
} |