4113a6fd6a
#KT-25525 Fixed #KT-25526 Fixed
16 lines
322 B
Plaintext
Vendored
16 lines
322 B
Plaintext
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
|
|
|
|
@TopMarker
|
|
val topUserVal: @TopAnn TopClass? = null |