34267e436e
This also fixes weird suppressions in user code: instead of
«@Suppress("DEPRECATED_SYMBOL_WITH_MESSAGE")» you should now use
«@Suppress("DEPRECATION")»
10 lines
228 B
Kotlin
Vendored
10 lines
228 B
Kotlin
Vendored
@Deprecated("text")
|
|
annotation class obsolete()
|
|
|
|
@Deprecated("text")
|
|
annotation class obsoleteWithParam(val text: String)
|
|
|
|
@<!DEPRECATION!>obsolete<!> class Obsolete
|
|
|
|
@<!DEPRECATION!>obsoleteWithParam<!>("text") class Obsolete2
|