aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/interfaceNames/sub/ObserverProtocol.aj
blob: 8d558ad1fe9e2e05909c92dc500af38b8811200d (plain)
1
2
3
4
5
6
package sub;

public abstract aspect ObserverProtocol {  
    protected interface Observer { }
    public void add(Observer o) {}
}