Files
kotlin-fork/compiler/testData/cli/jvm/experimentalDeprecatedWarning.kt
T
2021-06-08 11:37:27 +03:00

12 lines
295 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