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.

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