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.

ErrorOne.java 288B

12345678910111213141516
  1. import java.lang.annotation.*;
  2. public class ErrorOne {
  3. public static void main(String[] args) { }
  4. }
  5. @interface Anno {
  6. float fval();
  7. }
  8. enum Color { RED,GREEN,BLUE };
  9. // Non existent value of the annotation!
  10. aspect X {
  11. before(): execution(@Anno(ival=Color.GREEN) * *(..)) {}
  12. }