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
"d2 is unsafe because it goes beyond a's bounds." is incorrect, because slice "0..3" is non-inclusive, meaning that the slice is actually valid. (a.ptr[0..3] == a[0..$]) This is probably just a minor oversight about the range's end value being non-inclusive.
0 commit comments