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.

DeclareMethodCE.java 173B

12345678910
  1. /** PR#888 ajc crashes given method in declared method */
  2. class B {}
  3. aspect A {
  4. void B.n() {
  5. void n() { } // CE 8 method declared in method
  6. }
  7. }