aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1612/xmldefs/A.java
blob: fd94e0a308c6de4cca8fa86876710c0fb7924888 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import org.aspectj.lang.annotation.*;

 abstract aspect X {
  void around(): execution(* foo(..)) {}
}


@Aspect class B extends X { }

public class A {
  public void foo() { } 

public static void main(String []argv) {
   new A().foo();
}
}