Several crates are erroring on as_slice/as_mut_slice being added to the array types (unstably).
I suspect this is because method resolution is now seeing the method on arrays, whereas previously we derefed to &mut [T] and then there was a trait impl on that? There was another similar issue recently, but I forget what the resolution there was.
cc #76118
Several crates are erroring on as_slice/as_mut_slice being added to the array types (unstably).
I suspect this is because method resolution is now seeing the method on arrays, whereas previously we derefed to
&mut [T]and then there was a trait impl on that? There was another similar issue recently, but I forget what the resolution there was.cc #76118