4113a6fd6a
#KT-25525 Fixed #KT-25526 Fixed
15 lines
318 B
Kotlin
Vendored
15 lines
318 B
Kotlin
Vendored
// "Add '@TopMarker' annotation to 'topUserVal'" "true"
|
|
// COMPILER_ARGUMENTS: -Xuse-experimental=kotlin.Experimental
|
|
// WITH_RUNTIME
|
|
|
|
@Experimental
|
|
annotation class TopMarker
|
|
|
|
@TopMarker
|
|
class TopClass
|
|
|
|
@Target(AnnotationTarget.TYPE)
|
|
@TopMarker
|
|
annotation class TopAnn
|
|
|
|
val topUserVal: @<caret>TopAnn TopClass? = null |