Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/annotationUsage.kt
T
2023-02-28 10:19:18 +00: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