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

9 lines
261 B
Kotlin
Vendored

deprecated("text")
annotation class obsolete()
deprecated("text")
annotation class obsoleteWithParam(val text: String)
<!DEPRECATED_SYMBOL_WITH_MESSAGE!>obsolete<!> class Obsolete
<!DEPRECATED_SYMBOL_WITH_MESSAGE!>obsoleteWithParam<!>("text") class Obsolete2