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; } }