aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs171/pr387568/Code.java
blob: 99d248803b178016dbeaba6fa3af2ae68d8940db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.lang.annotation.*;


class AAA {
  public void m() {
    Color[] cs = Color.values();
  }
}

aspect Foo {
  after(): @annotation(Anno) {}
}

@Retention(RetentionPolicy.RUNTIME)
@interface Anno {}

enum Color {R,G,B;}