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

5 lines
92 B
Kotlin
Vendored

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