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.

NoReturnTypeInDesignator.java 186B

123456789101112
  1. // PR#130
  2. public aspect NoReturnTypeInDesignator
  3. {
  4. static after(): this(Point) && call(!static *(..)) {
  5. System.out.println( "after" );
  6. }
  7. }
  8. class Point {}