blob: e3445039795b379a2031c5afd4c5bc2159da456d [file] [log] [blame]
package test;
public class AnnotatedMethod {
public static @interface Anno {
int value();
}
@Anno(42)
public void f() { }
}