summaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/itdpe/base/test/OtherClass.aj
blob: 2a24fd6f97ce731165a679656ef75d52501ab2c5 (plain)
1
2
3
4
5
6
7
8
9
package test;

public class OtherClass {
    void x() {
        Demo d = new Demo(4);
        d.foo(null);
        d.x ++;
    }
}