aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/innerConsSyntax/Driver.java
blob: b432f5f9ab0391fb9ef6da53171ba92f7467568b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import org.aspectj.testing.Tester;

// PR#192

public class Driver {
    private static java.util.Vector v = new java.util.Vector();
    
    public static void main(String[] args) { test(); }

    public static void test() {
        Driver temp = new Driver();
        
        Inner inner = temp.new Inner();    
        
        Tester.check(inner.isInst, "Inner instance flag"); 
    }
    
    class Inner {
        public boolean isInst = true;
    }
}