Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/annotationUsage.kt
T
Andrey Zinovyev de3f31cf78 [FIR] Partial implementation of DEPRECATION(_ERROR) diagnostics
No support for inheritance deprecations
and deprecations in qualifier's parts
2021-07-07 16:19:28 +03:00

11 lines
245 B
Kotlin
Vendored

// FIR_IDENTICAL
@Deprecated("text")
annotation class obsolete()
@Deprecated("text")
annotation class obsoleteWithParam(val text: String)
@<!DEPRECATION!>obsolete<!> class Obsolete
@<!DEPRECATION!>obsoleteWithParam<!>("text") class Obsolete2