Fix caret position in "Convert function to property" intention

#KT-19944 Fixed
This commit is contained in:
Dmitry Gridin
2019-02-28 12:29:01 +03:00
parent 29a63ae58c
commit 41f3316981
16 changed files with 28 additions and 24 deletions
@@ -2,7 +2,7 @@ annotation class X(val s: String)
// 1
@X("") // 2
/* 3 */ fun foo<caret>(): String {
/* 3 */ fun fo<caret>o(): String {
// 4
return ""
}