aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/pr456/Test_AroundVarBug.java
blob: ed394fbca877e98de84ce63b4d53728e8ab2f2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.ArrayList;

import org.aspectj.testing.Tester; 

/** @testcase PR#456 advice on advice in usejavac mode */
public class Test_AroundVarBug {
    {
        new ArrayList ().iterator ();
    }
    public static void main (String[] args) {
        new   Test_AroundVarBug(); 
        Tester.checkAllEvents(); 
    } 
    
}