您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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