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

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

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

// FIR_COMPARISON