Files
kotlin-fork/idea/testData/findUsages/findFunctionUsages/kotlinMethodUsages.0.kt
T

13 lines
257 B
Kotlin

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