Files
kotlin-fork/idea/testData/findUsages/kotlin/findFunctionUsages/javaMethodUsages.0.kt
T
2014-09-16 19:32:37 +04:00

12 lines
270 B
Kotlin

// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package testing
public open class Server() {
public open fun <caret>processRequest() = "foo"
}
public class ServerEx(): Server() {
public override fun processRequest() = "foofoo"
}