d4ef85f6c2
Relates to #KT-22420
10 lines
209 B
Kotlin
Vendored
10 lines
209 B
Kotlin
Vendored
// "Assign to property" "false"
|
|
// ACTION: Convert assignment to assignment expression
|
|
// ERROR: Val cannot be reassigned
|
|
class Test {
|
|
var bar = 1
|
|
|
|
fun test(foo: Int) {
|
|
<caret>foo = foo
|
|
}
|
|
} |