org.aspectj/tests/new/StrictFp.java

15 lines
267 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
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;
}
}