Fixed KT-4431 Override/implement val: generate getter instead of initializer
#KT-4431 Fixed
This commit is contained in:
@@ -3,5 +3,6 @@ trait T {
|
||||
}
|
||||
|
||||
class GC() : T {
|
||||
override val v: Int = <selection><caret>0</selection>
|
||||
override val v: Int
|
||||
get() = <selection><caret>0</selection>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user