summaryrefslogtreecommitdiffstats
path: root/tests/design/intro/p1/ScopeIssues.java
blob: 2aa2add92e975a774ea406c640a85acb4d69ddf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}