@file:kotlin.Deprecated("message") @file:Suppress(BAR) @file:Suppress(BAZ) @kotlin.Deprecated("message") @Suppress(BAR) @Suppress(BAZ) @file:myAnnotation(1, "string") @file:boo.myAnnotation(1, BAR) @file:myAnnotation(N, BAZ) @myAnnotation(1, "string") @boo.myAnnotation(1, "string") @myAnnotation(N, BAZ) package boo const val BAZ = "baz" const val N = 0 @Target(AnnotationTarget.FILE) @Retention(AnnotationRetention.SOURCE) @Repeatable annotation class myAnnotation(val i: Int, val s: String)