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