aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr313026/one/Target.java
blob: 3405eba27f9f39992a7cdb1331ac3d0d67214945 (plain)
1
2
3
4
5
6
7
8
9
10
import java.lang.annotation.*;

public class Target {
  public static void main(String []argv) throws Exception {
    Annotation[] annos = Target.class.getDeclaredMethod("main",String[].class).getAnnotations();
    for (int i=0;i<annos.length;i++) {
      System.out.println(annos[i]);
    }
  }
}