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

Test_AroundVarBug.java 339B

12345678910111213141516
  1. import java.util.ArrayList;
  2. import org.aspectj.testing.Tester;
  3. /** @testcase PR#456 advice on advice in usejavac mode */
  4. public class Test_AroundVarBug {
  5. {
  6. new ArrayList ().iterator ();
  7. }
  8. public static void main (String[] args) {
  9. new Test_AroundVarBug();
  10. Tester.checkAllEvents();
  11. }
  12. }