On Sunday, 7 June 2015 at 11:33:56 UTC, Marc Schütz wrote:
Not true:

    immutable y = 1;
    enum x = &y;

You can even do pointer arithmetics:

    auto foo() {
        auto x = [1,2,3,4];
        auto y = &x[1];
        return y[2];
    }
    pragma(msg, foo());

Then I do not see any problems hindering satisfy my report :)

Reply via email to