Override completion in expect class should behave differently

Caret placement is at the end of new fun/property

#KT-25313 Fixed
This commit is contained in:
Alexander Podkhalyuzin
2018-09-07 23:15:43 +03:00
parent d571d0ad51
commit baa0f2dc1b
8 changed files with 40 additions and 15 deletions
@@ -1,9 +1,9 @@
// WITH_RUNTIME
// DISABLE-ERRORS
interface T<X> {
val <caret>foo: X
val foo: X
}
enum class E(override val foo: Int) : T<Int> {
enum class E(override val foo: Int<caret>) : T<Int> {
A, B, C
}
}