Introduce "Assign to property" quick-fix #KT-17204 Fixed

This commit is contained in:
Toshiaki Kameyama
2017-10-02 12:36:22 +03:00
committed by Mikhail Glukhikh
parent 67a50e92d0
commit e92af08c98
20 changed files with 302 additions and 2 deletions
@@ -0,0 +1,11 @@
// "Assign to property" "true"
// WITH_RUNTIME
class Test {
var foo = 1
fun test(foo: Int) {
"".run {
<caret>foo = foo
}
}
}