blob: a1ae442f5694623edd0048bf92d7faa96722d266 [file] [log] [blame]
// "Assign to property" "true"
// WITH_RUNTIME
class Test {
var foo = 1
fun test(foo: Int) {
"".run {
<caret>foo = foo
}
}
}