summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/findUsages/kotlin/findFunctionUsages/kotlinMethodUsages.0.kt
blob: 9b7107fd4efeb544d75bb8f5201b52b68296ea2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtNamedFunction
// OPTIONS: usages
package server

public open class Server() {
    open fun <caret>processRequest() = "foo"
}

public class ServerEx() : Server() {
    override fun processRequest() = "foofoo"
}


// FIR_COMPARISON