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

11 lines
165 B
Kotlin
Vendored

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