[FIR] Partial implementation of DEPRECATION(_ERROR) diagnostics
No support for inheritance deprecations and deprecations in qualifier's parts
This commit is contained in:
committed by
teamcityserver
parent
9fad55d551
commit
de3f31cf78
@@ -5,8 +5,8 @@ package foobar.a
|
||||
import java.*
|
||||
|
||||
val a : java.util.List<Int>? = null
|
||||
val a2 : <!UNRESOLVED_REFERENCE!>util.List<Int>?<!> = null
|
||||
val a3 : <!UNRESOLVED_REFERENCE!>LinkedList<Int>?<!> = null
|
||||
val a2 : <!UNRESOLVED_REFERENCE!>util.List<Int><!>? = null
|
||||
val a3 : <!UNRESOLVED_REFERENCE!>LinkedList<Int><!>? = null
|
||||
|
||||
// FILE: b.kt
|
||||
package foobar
|
||||
@@ -20,7 +20,7 @@ package foobar.a
|
||||
import java.util.*
|
||||
|
||||
val b : List<Int>? = <!INITIALIZER_TYPE_MISMATCH!>a<!>
|
||||
val b1 : <!UNRESOLVED_REFERENCE!>util.List<Int>?<!> = a
|
||||
val b1 : <!UNRESOLVED_REFERENCE!>util.List<Int><!>? = a
|
||||
|
||||
// FILE: d.kt
|
||||
package foobar
|
||||
|
||||
Reference in New Issue
Block a user