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

17 lines
228 B
Kotlin
Vendored

open class B {
open fun foo(p: String){}
fun foo(p: Int){}
}
interface I {
fun foo(p: String)
}
class A : B(), I {
fun foo(p: Any) {
if (p is Int) {
super<B><caret>.foo(p)
}
}
}