org.aspectj/tests/bugs/OverloadedITDNPE.java
aclement 36f8e3c561 Bugzilla Bug 51919
Polymorphic ITD fails in CVS HEAD (From ajdt 1.1.6)
2004-02-24 10:00:30 +00:00

11 rindas
224 B
Java

aspect LogManager {
public void Loggable.logTrace(Object message) {
}
// no crash if the next method on the next line is renamed
public void Loggable.logTrace(Object message, Throwable t) {
}
}
interface Loggable {
}