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.

DivOpMustHappen.java 324B

1234567891011121314151617
  1. import org.aspectj.testing.Tester;
  2. public class DivOpMustHappen {
  3. static int i = 0;
  4. static int j = 1;
  5. public static void main(String[] args) {
  6. boolean threw = false;
  7. try {
  8. switch(j / i) {}
  9. } catch (Exception e) {
  10. threw = true;
  11. }
  12. Tester.check(threw, "didn't throw divbyzero exception");
  13. }
  14. }