blob: 989beacd56b2a0f3ad86f0900bbe41a720f40b12 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 {
}
|