Files
kotlin-fork/compiler/testData/cli/jvm/experimentalDeprecated.kt
T
2021-07-14 21:18:23 +03:00

10 lines
204 B
Kotlin
Vendored

package org.test
@Deprecated("Error", level = DeprecationLevel.ERROR)
@RequiresOptIn
annotation class Error
@Deprecated("Hidden", level = DeprecationLevel.HIDDEN)
@RequiresOptIn
annotation class Hidden