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

13 lines
262 B
Kotlin
Vendored

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