7e6495618b
#KT-10416 Fixed
7 lines
101 B
Kotlin
Vendored
7 lines
101 B
Kotlin
Vendored
// "Make variable mutable" "true"
|
|
class A(val a: Int) {
|
|
fun foo() {
|
|
<caret>a = 5
|
|
}
|
|
}
|