Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/imports.kt
T
2015-04-24 15:44:32 +03:00

8 lines
175 B
Kotlin
Vendored

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