16 lines
311 B
Kotlin
Vendored
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
|