Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/annotationUsage.kt
T
2015-09-08 12:11:30 +03:00

9 lines
265 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