17 lines
315 B
Plaintext
Vendored
17 lines
315 B
Plaintext
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
|
|
|
|
@TopMarker
|
|
val topUserVal: @TopAnn TopClass? = null
|