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

5 lines
122 B
Kotlin
Vendored

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