e5ce32feeb
KTIJ-23505 and duplicates
9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
open class Server() {
|
|
companion object {
|
|
val NAME = "Server"
|
|
}
|
|
}
|
|
|
|
class Client: Server() {
|
|
val name = <expr>Server</expr>.NAME
|
|
} |