14 lines
168 B
Plaintext
Vendored
14 lines
168 B
Plaintext
Vendored
open class A(a: Int) {
|
|
// INFO: {"checked": "true"}
|
|
val n: Int
|
|
|
|
init {
|
|
n = a + 1
|
|
}
|
|
}
|
|
|
|
class B: A {
|
|
|
|
constructor(a: Int) : super(a) {
|
|
}
|
|
} |