1
0
espelhamento de https://github.com/eclipse-aspectj/aspectj.git sincronizado 2024-08-27 05:54:38 +02:00
org.aspectj/tests/bugs/interfaceNames/sub/ObserverProtocol.aj
jhugunin 0a175d2d03 FIXED: Bugzilla Bug 32421
can't resolve nested public interfaces 

FIXED: Bugzilla Bug 32399  
   Incorrect binding of protected (marker) interfaces
2003-03-06 22:12:00 +00:00

7 linhas
138 B
Plaintext

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