Smart Selector: Do not suggest expressions contained in the super-expression

#KT-4824 Fixed
This commit is contained in:
Alexey Sedunov
2014-04-17 16:18:39 +04:00
parent 068c9636fc
commit 5f92c22df3
8 changed files with 100 additions and 1 deletions
@@ -0,0 +1,11 @@
open class EE() {
open fun f() = 43
}
class FF() : EE() {
override fun f() = <caret>super@FF.f() - 1
}
/*
super@FF.f()
super@FF.f() - 1
*/