Files
kotlin-fork/compiler/testData/cli/jvm/experimentalDeprecatedWarning.kt
T
2021-07-12 21:26:16 +03:00

15 lines
336 B
Kotlin
Vendored

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