blob: 01a6f9e8673451fd2437025786cd2305508543d8 [file] [log] [blame]
// "Assign to property" "false"
// ACTION: Convert assignment to assignment expression
// ERROR: Val cannot be reassigned
class Test(val foo: Int) {
fun test(foo: Int) {
<caret>foo = foo
}
}