2ecba6ac39
This directive anyway does not make test run twice with OI, and with NI It only once run the test with specific settings (// LANGUAGE) and ignores irrelevant (OI or NI tags)
5 lines
120 B
Kotlin
Vendored
5 lines
120 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
class X<T>(val t: T) {
|
|
constructor(t: T, i: Int) : this(<!TYPE_MISMATCH!>i<!>)
|
|
}
|