aboutsummaryrefslogtreecommitdiffstats
path: root/tests/errors/ImportWithinClassBody.java
blob: 24d1f45cda34f0a7ebe02352e78c1b7b785e9b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.aspectj.testing.Tester;

// PR#218

public class ImportWithinClassBody { 
   
    import java.util.Vector;
    
    public static void test() {
        Tester.check("".equals(""), ""); 
    }
}