org.aspectj/tests/new/DeclareMethodCE.java
acolyer 19ed0a21b8 move to Eclipse 3.0 M6 JDT core (v_396). Also makes 1.4 the
default mode (inherited behaviour from JDT).
2004-01-13 11:27:59 +00:00

11 lines
173 B
Java

/** PR#888 ajc crashes given method in declared method */
class B {}
aspect A {
void B.n() {
void n() { } // CE 8 method declared in method
}
}