11 lines
196 B
Kotlin
Vendored
11 lines
196 B
Kotlin
Vendored
// "Insert 'this()' call" "true"
|
|
// ERROR: There's a cycle in the delegation calls chain
|
|
|
|
open class B(val x: Int)
|
|
|
|
class A : B {
|
|
constructor()<caret>
|
|
|
|
constructor(x: String) : super(1)
|
|
}
|