blob: a738d97a5ddd50d912689feb059a59b060e8b87a [file] [log] [blame]
package test;
public class Some {
@SomeAnnotation(some = "Foo", same = 0)
public void foo() {
}
@SomeAnnotation(some = {"Bar", "Buz"}, same = {1, 2})
public void bar() {
}
}