You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Code2.java 293B

1234567891011121314
  1. interface Foo {
  2. public static final Object dummy = new Object();
  3. }
  4. aspect Code2 {
  5. Object around(): call(Object.new(..)) {
  6. return proceed();
  7. }
  8. public static void main(String[] args) {
  9. System.out.println(Foo.dummy);
  10. }
  11. }