summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/findUsages/kotlin/findFunctionUsages/javaMethodUsages.0.kt
blob: cb320c87351b8b537a557017ebfaa23a9d9340eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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"
}

// FIR_COMPARISON