We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75a5e17 + 203afc0 commit fdf8ad4Copy full SHA for fdf8ad4
tests/pass/slices.rs
@@ -1,7 +1,6 @@
1
//@revisions: stack tree
2
//@[tree]compile-flags: -Zmiri-tree-borrows
3
//@compile-flags: -Zmiri-strict-provenance
4
-#![feature(slice_as_chunks)]
5
#![feature(slice_partition_dedup)]
6
#![feature(layout_for_ptr)]
7
@@ -227,7 +226,7 @@ fn test_for_invalidated_pointers() {
227
226
228
buffer.reverse();
229
230
- // Calls `fn as_chunks_unchecked_mut` internally (requires unstable `#![feature(slice_as_chunks)]`):
+ // Calls `fn as_chunks_unchecked_mut` internally:
231
assert_eq!(2, buffer.as_chunks_mut::<32>().0.len());
232
for chunk in buffer.as_chunks_mut::<32>().0 {
233
for elem in chunk {
0 commit comments