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

5 lines
112 B
Kotlin
Vendored

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