14 lines
339 B
Kotlin
Vendored
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"
|
|
}
|
|
|