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

15 lines
208 B
Kotlin
Vendored

// IS_APPLICABLE: false
open class B {
open fun foo(p: String){}
}
interface I {
fun foo(p: String) {}
}
class A : B(), I {
override fun foo(p: String) {
super<B><caret>.foo("")
}
}