Correct completion after "super."

#KT-8406 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-11-03 18:55:26 +03:00
parent 218c0cfff7
commit b73c574d19
20 changed files with 292 additions and 30 deletions
@@ -0,0 +1,11 @@
open class Base {
open fun foo(p: Int){}
}
class Derived : Base() {
override fun foo(p: Int) {
super.<caret>
}
}
// ELEMENT: foo