org.aspectj/tests/new/EachObjectInDeepPackage.java
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

21 lines
583 B
Java

/*
* Modified this test case to reflect the fact that types in the default package
* can only be used in named packages if they are imported.
*
* I believe that according to the 1.1 interpretation of the JLS that this import
* is also disallowed and there is no way to refer to types in the default package
* from a named package.
*/
package the.deep.pkg;
import org.aspectj.testing.Tester;
import EachObjectTarget;
aspect Aspect pertarget(target(EachObjectTarget)) {
before(): call(void foo(..)) {
EachObjectTarget t = null;
Tester.check(true, "Dummy test");
}
}