e6b5cb5216
Update includes:
- Changing syntax of `OI/`NI` tags from `<!NI;TAG!>` to `<!TAG{NI}!>`
- Fix some incorrect directives
- Change order of diagnostics in some places
- Remove ignored diagnostics from FIR test data (previously `DIAGNOSTICS` didn't work)
- Update FIR dumps in some places and add `FIR_IDENTICAL` if needed
- Replace all JAVAC_SKIP with SKIP_JAVAC directive
28 lines
1.0 KiB
Kotlin
Vendored
28 lines
1.0 KiB
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
// !WITH_NEW_INFERENCE
|
|
open class B<R1, R2>(x: R1, y: R2)
|
|
|
|
class A0<T1, T2> {
|
|
constructor(x: T1, y: T2): <!CYCLIC_CONSTRUCTOR_DELEGATION_CALL!>this<!>(x, y)
|
|
|
|
constructor(x: T1, y: T2, z: T2): this(x, 1) // ok, delegates to constructor(x: T1, y: Int)
|
|
|
|
constructor(x: T1, y: Int): this(x, <!TYPE_MISMATCH!>""<!>)
|
|
constructor(x: T1): this(x, 1)
|
|
constructor(x: T1, y: T2, z: String): this(<!TYPE_MISMATCH!>y<!>, <!TYPE_MISMATCH!>x<!>)
|
|
}
|
|
|
|
class A1<T1, T2> : B<T1, T2> {
|
|
constructor(x: T1, y: T2): super(x, y)
|
|
constructor(x: T1, y: Int): super(x, <!TYPE_MISMATCH("T2; Int")!>y<!>)
|
|
constructor(x: T1, y: T1, z: T1): super(x, <!TYPE_MISMATCH("T2; T1")!>y<!>)
|
|
}
|
|
|
|
class A2<T1, T2> : B<T1, Int> {
|
|
constructor(x: T1, y: T2): super(x, <!TYPE_MISMATCH("Int; T2")!>y<!>)
|
|
constructor(x: T1, y: Int): super(x, y)
|
|
constructor(x: T1, y: T1, z: T1): super(x, <!TYPE_MISMATCH("Int; T1")!>y<!>)
|
|
constructor(x: T1, y: T2, z: String): super(<!TYPE_MISMATCH("T1; T2")!>y<!>, 1)
|
|
}
|
|
|