summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/itdpe/base/test/Demo.aj
blob: 4a8355fd3f98f5682c1a80449304719484e97daf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package test;


public class Demo {
    
    void g() {
        new Demo(7).foo(null);
        x++;
        this.x++;
    }

}