Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/funParameter.kt
T
2016-01-14 13:55:03 +03:00

5 lines
107 B
Kotlin
Vendored

// "Make variable mutable" "false"
// ERROR: Val cannot be reassigned
fun fun1(i: Int) {
<caret>i = 2
}