Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/beforeNonApplicableOnEmpty.kt
T
2015-03-27 16:09:41 +03:00

11 lines
196 B
Kotlin

// "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)
}