Inspection "can be primary constructor property" with relevant quick-fix #KT-8477 Fixed

(cherry picked from commit 2db7562)
This commit is contained in:
Mikhail Glukhikh
2016-06-16 13:09:32 +03:00
parent 9240c82934
commit ac03d98cb2
13 changed files with 196 additions and 0 deletions
@@ -0,0 +1,4 @@
// "Move to constructor" "true"
class Container(index: Int) {
protected open var <caret>index = index
}