Files
kotlin-fork/idea/testData/intentions/removeExplicitSuperQualifier/WrongOffset2.kt
T
2015-08-27 23:21:22 +03:00

18 lines
241 B
Kotlin
Vendored

// IS_APPLICABLE: false
open class Base {
open fun foo() {
}
}
class A : Base() {
override fun foo() {
super.foo()
}
inner class C {
fun test() {
supe<caret>r<Base>@A.foo()
}
}
}