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

TypeNotImportedInAroundCE.java 193B

123456789101112
  1. class C { void m() { } }
  2. /** @testcase type not imported in around advice */
  3. aspect A {
  4. void around() : execution(void m()) {
  5. Rectangle expected = null; // CE 10
  6. }
  7. }