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