Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/imports.fir.kt
T
Andrey Zinovyev de3f31cf78 [FIR] Partial implementation of DEPRECATION(_ERROR) diagnostics
No support for inheritance deprecations
and deprecations in qualifier's parts
2021-07-07 16:19:28 +03:00

9 lines
121 B
Kotlin
Vendored

import C as C2
@Deprecated("obsolete")
class C {
fun use() {}
}
fun useAlias(c : <!DEPRECATION!>C2<!>) { c.use() }