Files
kotlin-fork/idea/testData/findUsages/kotlin/findWithStructuralGrouping/kotlinMethodUsages.0.kt
T
2016-10-04 22:20:54 +02:00

14 lines
339 B
Kotlin
Vendored

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