Can I make it work?
struct S { int[] l; }
then
auto s = S(); s.l ~= 1; // ok s.l = []; // error
Marc via Digitalmars-d-learn Wed, 14 Mar 2018 19:11:57 -0700
Can I make it work?
struct S { int[] l; }
then
auto s = S(); s.l ~= 1; // ok s.l = []; // error