Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/noParametersThisCall.kt.after
T

7 lines
181 B
Plaintext
Vendored

// "Create secondary constructor" "true"
// ERROR: There's a cycle in the delegation calls chain
class Creation(val f: Int) {
constructor() : this(<caret>)
}
val v = Creation()