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.

BadPointcutName.java 336B

1234567891011121314151617
  1. import org.aspectj.testing.Tester;
  2. // PR#209
  3. public aspect BadPointcutName {
  4. private static java.util.Vector v = new java.util.Vector();
  5. public static void main(String[] args) { test(); }
  6. public static void test() {
  7. Tester.check(true, "");
  8. }
  9. /*static*/ after() returning (): noSuchCut() {}
  10. }