blob: 0fb31116a242974db6f5dd2978115412833ac520 [file] [log] [blame]
// "Assign to property" "true"
class Test {
var foo = 1
fun test(foo: String) {
this.foo = 2
}
}