7f50e6e70e
(cherry picked from commit 93aaa48)
5 lines
93 B
Kotlin
Vendored
5 lines
93 B
Kotlin
Vendored
abstract class Base(val x: Int)
|
|
|
|
class Derived<caret>(x: Int) : Base(x) {
|
|
val y = 2 * x
|
|
} |