org.aspectj/tests/design/intro/p1/ScopeIssues.java
2002-12-16 18:51:06 +00:00

17 lines
369 B
Java

package p1;
import org.aspectj.testing.Tester;
import java.math.*;
public aspect ScopeIssues {
public static void main(String[] args) {
Tester.checkEqual(C1.bi, BigInteger.ONE);
Tester.checkEqual(Helper.bi, BigInteger.ONE);
}
private static BigInteger C1.bi = BigInteger.ONE;
private static BigInteger Helper.bi = BigInteger.ONE;
}