blob: 60c793c0eae0800e77fc9440d28f227e8a9cb409 [file] [log] [blame]
// "Assign to property" "false"
// ERROR: Val cannot be reassigned
class Test {
var bar = 1
fun test(foo: Int) {
<caret>foo = foo
}
}