d8d38862d9
#KT-22941 Fixed
12 lines
295 B
Kotlin
Vendored
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
|