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

10 lines
195 B
Kotlin
Vendored

package org.test
@Deprecated("Warning", level = DeprecationLevel.WARNING)
@RequiresOptIn
@Retention(AnnotationRetention.BINARY)
annotation class Warning
@RequiresOptIn
annotation class OneMore