Files
kotlin-fork/idea/testData/findUsages/kotlin/findFunctionUsages/javaMethodUsages.0.kt
T
2015-10-19 21:35:30 +02:00

12 lines
267 B
Kotlin
Vendored

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