1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-27 05:54:38 +02:00
org.aspectj/tests/new/StrictFp.java
2002-12-16 18:51:06 +00:00

15 satır
267 B
Java

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