pike.git / src / testsuite.in

version» Context lines:

pike.git/src/testsuite.in:4110:    protected int xx;    int `->x() { return xx; }    void `->x=(int xxx) { xx = xxx; }    protected void create(int xxx) {    x = xxx;    }    };    class Y {    inherit X;    protected void create(int yyy) { -  x = yyy + 2; +  X::x = yyy + 2;    }    };    return Y(5)->x;   ]], 7)      test_any([[    // Since the addition of F_APPEND_MAPPING in set_bar below    // the setter is not being called anymore. Instead, the mapping    // _data->foo is modified in place.    class A(mapping _data) {