64e97225b8
Since the default JVM target (`JvmTarget.DEFAULT`) is now 1.8, the changed test started to fail. This change fixes it.
8 lines
176 B
Kotlin
Vendored
8 lines
176 B
Kotlin
Vendored
// Anno
|
|
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
@Target(AnnotationTarget.TYPE_PARAMETER, AnnotationTarget.TYPE)
|
|
@MustBeDocumented
|
|
@Repeatable
|
|
annotation class Anno(val i: Int)
|