You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
voidmain()
{
int[][][string] aa; // AA with nested array value type
aa["x"] = null;
aa["x"] ~=null; // This append is silently lost!assert(aa["x"].length ==1); // FAILS: length is still 0
}