Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/kt6992.kt
T

5 lines
119 B
Kotlin
Vendored

// FIR_IDENTICAL
class X<T>(val t: T) {
constructor(t: String): <!CYCLIC_CONSTRUCTOR_DELEGATION_CALL!>this<!>(t)
}