Files
kotlin-fork/idea/testData/quickfix/assignToProperty/qualifiedThis.kt.after
T
2017-10-05 14:25:28 +03:00

11 lines
168 B
Plaintext
Vendored

// "Assign to property" "true"
// WITH_RUNTIME
class Test {
var foo = 1
fun test(foo: Int) {
"".run {
this@Test.foo = foo
}
}
}