Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/nonApplicableOnEmpty.kt.after
T

11 lines
205 B
Plaintext
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() : this(<caret>)
constructor(x: String) : super(1)
}