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.

12345678910111213
  1. public aspect pr109614 {
  2. Object around() : call( NoClassDefFoundError.new(..)) {
  3. return proceed();
  4. }
  5. public static void main(String []argv) {
  6. new ContractChecking();
  7. }
  8. }
  9. class ContractChecking {
  10. public static final boolean enabled = Boolean.getBoolean(ContractChecking.class.getName());
  11. }