You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314
  1. import org.aspectj.testing.*;
  2. public strictfp class StrictFp {
  3. public static void main(String[] args) {
  4. new StrictFp().go();
  5. Tester.check(ran, "go did not run");
  6. }
  7. static boolean ran = false;
  8. void go() {
  9. ran = true;
  10. }
  11. }