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.

MismatchedParens.java 277B

1234567891011121314151617
  1. import org.aspectj.testing.Tester;
  2. // PR#213
  3. public class MismatchedParens {
  4. public static void main(String[] args) { test(); }
  5. public static void test() {
  6. org.aspectj.testing.Tester.check(true, "");
  7. }
  8. }
  9. aspect A {
  10. /*static*/ before(): foocut(
  11. }