Can I make it work?

struct S
{
        int[] l;
}

then

auto s = S();
s.l ~= 1; // ok
s.l = []; // error

Reply via email to