blob: 51ae39fe1924a99e3f87a7f4761271c97802ed12 [file] [log] [blame]
@Target(AnnotationTarget.FIELD, AnnotationTarget.CLASS)
annotation class Anno
class UnresolvedArgument(@Anno(BLA) val s: Int)
class WithoutArguments(@Deprecated val s: Int)
fun test() {
UnresolvedArgument(3)
WithoutArguments(0)
}