org.aspectj/tests/bugs/interfaceITDs/PublicPackage.java
aclement bbc409e17b Fix for Bugzilla Bug 70794
The introduction on interface causes the interface implementation class error
2004-08-20 13:25:33 +00:00

23 lines
422 B
Java

public interface PublicPackage {
//empty interface
}
//aspectj introduce a method to this interface
privileged aspect aspectWorld {
abstract void PublicPackage.world();
}
//class test implements hello interface, and
//method world
class test implements PublicPackage {
public void world() {
System.out.println("hello");
}
public static void main(String[] args) {
test t = new test();
t.world();
}
}