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.

Cosmetic.java 286B

1234567891011
  1. class Test {
  2. public static void main(String[] args) {
  3. test();
  4. }
  5. static void test() {
  6. throw new Error("hello");
  7. }
  8. static aspect A {
  9. declare soft : unknown.Error : call(void test()); // CE should be a message saying cant bind type 'unknown.Error' and not 'unknown$Error'
  10. }
  11. }