Fixed KT-4431 Override/implement val: generate getter instead of initializer

#KT-4431 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-12-05 07:02:30 +03:00
parent eae4cdbd8f
commit 4b9bcce07a
9 changed files with 44 additions and 26 deletions
@@ -9,7 +9,9 @@ class SomeTest : Test {
<selection><caret>throw UnsupportedOperationException()</selection>
}
override val testProp: Int = 0
override val testProp: Int
get() = 0
/**
* test
*/