summaryrefslogtreecommitdiffstats
path: root/tests/new/StrictFp.java
blob: d9113a0aedd77c1745cf98fdce8fa5170c609222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.aspectj.testing.*;

public strictfp class StrictFp {
    public static void main(String[] args) {
        new StrictFp().go();
        Tester.check(ran, "go did not run");
    }

    static boolean ran = false;

    void go() {
        ran = true;
    }
}