aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr163005/Code2.java
blob: 35283a0a88f4a9c76063dee227b7f3730d8aac92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
interface Foo {
        public static final Object dummy = new Object();
}

aspect Code2 {
        Object around(): call(Object.new(..)) {
                return proceed();
        }

        public static void main(String[] args) {
                System.out.println(Foo.dummy);
        }
}