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.

Main.java 273B

1234567891011
  1. public class Main {
  2. static {
  3. System.setProperty("A.before", "false");
  4. }
  5. public static void main(String[] args) {
  6. if (!Boolean.getBoolean("A.before")) {
  7. throw new Error("property A.before not set by aspect A.java");
  8. }
  9. }
  10. }