KT-8968 Special completion after "super."
#KT-8968 Fixed
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
open class Base {
|
||||
open fun foo(p1: Int, vararg p2: Int){}
|
||||
}
|
||||
|
||||
class Derived : Base() {
|
||||
override fun foo(p1: Int, vararg p2: Int) {
|
||||
super.<caret>
|
||||
}
|
||||
}
|
||||
|
||||
// ELEMENT: foo
|
||||
// TAIL_TEXT: "(p1, *p2)"
|
||||
Reference in New Issue
Block a user