4 lines
119 B
Kotlin
Vendored
4 lines
119 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
class X<T>(val t: T) {
|
|
constructor(t: T, i: Int) : this(<!TYPE_MISMATCH!>i<!>)
|
|
} |