de3f31cf78
No support for inheritance deprecations and deprecations in qualifier's parts
9 lines
121 B
Kotlin
Vendored
9 lines
121 B
Kotlin
Vendored
import C as C2
|
|
|
|
@Deprecated("obsolete")
|
|
class C {
|
|
fun use() {}
|
|
}
|
|
|
|
fun useAlias(c : <!DEPRECATION!>C2<!>) { c.use() }
|