Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/imports.kt
T
2023-02-28 10:19:18 +00:00

10 lines
156 B
Kotlin
Vendored

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