Files
kotlin-fork/idea/testData/quickfix/experimental/annotationInTopLevelProperty.kt
T

16 lines
311 B
Kotlin
Vendored

// "Add '@TopMarker' annotation to 'topUserVal'" "true"
// COMPILER_ARGUMENTS: -Xopt-in=kotlin.RequiresOptIn
// WITH_RUNTIME
@RequiresOptIn
annotation class TopMarker
@TopMarker
class TopClass
@Target(AnnotationTarget.TYPE)
@TopMarker
annotation class TopAnn
val topUserVal: @<caret>TopAnn TopClass? = null