blob: 4414612fe6b58a75187ee0a3485734992166e370 [file] [log] [blame]
// "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
}
}