Insert explicit property type while converting accessor to block body

So #KT-20417 Fixed
This commit is contained in:
Kirill Rakhman
2017-09-25 22:11:34 +03:00
committed by Mikhail Glukhikh
parent 31f5c105f3
commit 1db365bb59
4 changed files with 22 additions and 1 deletions
@@ -0,0 +1 @@
val foo <caret>get() = "abc"
@@ -0,0 +1,4 @@
val foo: String
get() {
return "abc"
}