Quick Fixes: Implement 'Initialize with constructor parameter' quick-fix

#KT-6604 Fixed
This commit is contained in:
Alexey Sedunov
2015-11-12 17:19:05 +03:00
parent 138370ce5b
commit ac8532ffce
26 changed files with 428 additions and 11 deletions
@@ -0,0 +1,11 @@
// "Initialize with constructor parameter" "true"
open class A {
<caret>var n: Int
get() = 1
}
class B : A()
fun test() {
val a = A()
}