14 lines
225 B
Kotlin
Vendored
14 lines
225 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtClass
|
|
// OPTIONS: usages
|
|
package server
|
|
|
|
open class <caret>Server {
|
|
companion object {
|
|
val NAME = "Server"
|
|
}
|
|
|
|
open fun work() {
|
|
println("Server")
|
|
}
|
|
}
|