mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
Since the default JVM target (`JvmTarget.DEFAULT`) is now 1.8, the
changed test started to fail. This change fixes it.
(cherry picked from commit 64e97225b8)
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)
|