Files
kotlin-fork/idea/testData/smartSelection/superExpressionWithLabel.kt
T
2014-04-18 14:38:17 +04:00

11 lines
147 B
Kotlin
Vendored

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
*/