aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs169/pr44365/SimpleEnum.java
blob: 6f1ecbee7588d992b83507482f73608576903e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class SimpleEnum {
}

enum Foo {
}

class Bar {
}

interface I {
}

aspect X {
  before(): within(is(EnumType)) && staticinitialization(*) {}
}