9 lines
154 B
Kotlin
Vendored
9 lines
154 B
Kotlin
Vendored
// "Assign to property" "false"
|
|
// ERROR: Val cannot be reassigned
|
|
class Test {
|
|
var bar = 1
|
|
|
|
fun test(foo: Int) {
|
|
<caret>foo = foo
|
|
}
|
|
} |