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

4 lines
119 B
Kotlin
Vendored

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