aboutsummaryrefslogtreecommitdiffstats
path: root/tests/multiIncremental/pr262218/base/src/test/OtherClass.aj
blob: a24940d9c6fdad59a4d28adb90c74a85a05815bc (plain)
1
2
3
4
5
6
7
8
9
10
package test;


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