ec53efd869
Otherwise the diagnostic was not reported on an unused import of a deprecated class in diagnostic tests, see the test case
11 lines
106 B
Kotlin
Vendored
11 lines
106 B
Kotlin
Vendored
// FILE: A.kt
|
|
|
|
package test
|
|
|
|
@Deprecated("A")
|
|
interface A
|
|
|
|
// FILE: B.kt
|
|
|
|
import test.<!DEPRECATION!>A<!>
|