Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/annotationUsage.kt
T

12 lines
280 B
Kotlin
Vendored

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