org.aspectj/tests/bugs/OverloadedITDNPE.java

11 lines
224 B
Java
Raw Normal View History

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 {
}