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.

Pr103051.aj 262B

123456789101112
  1. import java.io.IOException;
  2. public aspect Pr103051 {
  3. declare soft: IOException: within(Pr103051) && adviceexecution();
  4. before() : execution(* main(..)) {
  5. throw new IOException("test");
  6. }
  7. public static void main(String args[]) {
  8. }
  9. }