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

5 lines
133 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
class X<T> {
constructor(t: T, i: Int): <!CYCLIC_CONSTRUCTOR_DELEGATION_CALL!>this<!>(i, 1)
}