AddConstModifierIntention: handle more edge cases #KT-13173 Fixed

(cherry picked from commit 4755596)
This commit is contained in:
Kirill Rakhman
2016-07-21 19:39:41 +03:00
committed by Mikhail Glukhikh
parent adbb07f30b
commit 5948b69679
8 changed files with 63 additions and 1 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: FALSE
interface I {
val a: String
}
object O: I {
override val <caret>a = ""
}