Override completion right after override modifier

#KT-25312 Fixed
This commit is contained in:
Alexander Podkhalyuzin
2018-09-11 14:39:52 +03:00
parent 073f4f51fd
commit ed8aad6149
4 changed files with 35 additions and 2 deletions
@@ -0,0 +1,8 @@
interface Interface {
fun funA()
}
expect class SClass : Interface { // there is no error highlighting about unimplemented members, see KT-25044
override fu<caret>
}
// ELEMENT_TEXT: "override fun funA() {...}"
@@ -0,0 +1,8 @@
interface Interface {
fun funA()
}
expect class SClass : Interface { // there is no error highlighting about unimplemented members, see KT-25044
override fun funA()<caret>
}
// ELEMENT_TEXT: "override fun funA() {...}"