Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/funParameter.kt
T
2016-10-05 11:32:41 +03:00

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
}