@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
val BAZ = "baz"
val N = 0
annotation class myAnnotation(val i: Int, val s: String)