Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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