10 lines
95 B
Kotlin
Vendored
10 lines
95 B
Kotlin
Vendored
package foo
|
|
|
|
open class Super {
|
|
val foo = 23
|
|
}
|
|
|
|
class Sub : Super() {
|
|
fun foo() = 42
|
|
}
|