10 lines
149 B
Plaintext
Vendored
10 lines
149 B
Plaintext
Vendored
// "Insert 'this()' call" "true"
|
|
|
|
open class B(val x: Int)
|
|
|
|
class A : B {
|
|
constructor(x: String)<caret> : this()
|
|
|
|
constructor() : super(1)
|
|
}
|