15 lines
332 B
Kotlin
15 lines
332 B
Kotlin
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
|
|
// OPTIONS: usages
|
|
package server;
|
|
|
|
public open class Server() {
|
|
private fun <caret>doProcessRequest() = "foo"
|
|
|
|
open fun processRequest() = doProcessRequest()
|
|
}
|
|
|
|
public class ServerEx(): Server() {
|
|
override fun processRequest() = "foo" + doProcessRequest()
|
|
}
|
|
|