File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 2424 run : MIRIFLAGS=-Zmiri-strict-provenance cargo miri test
2525 - name : Test (gecko-ffi) with Miri
2626 run : MIRIFLAGS=-Zmiri-strict-provenance cargo miri test --features=gecko-ffi
27+ - name : Test (unstable features) with Miri
28+ run : MIRIFLAGS=-Zmiri-strict-provenance cargo miri test --features=unstable
2729
2830 build :
2931 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 142142//! [pinned]: https://doc.rust-lang.org/std/pin/index.html
143143
144144#![ cfg_attr( not( feature = "std" ) , no_std) ]
145+ #![ cfg_attr( feature = "unstable" , feature( trusted_len) ) ]
145146#![ allow( clippy:: comparison_chain, clippy:: missing_safety_doc) ]
146147
147148extern crate alloc;
@@ -2052,7 +2053,6 @@ impl<T: Clone> From<&[T]> for ThinVec<T> {
20522053 }
20532054}
20542055
2055- #[ cfg( not( no_global_oom_handling) ) ]
20562056impl < T : Clone > From < & mut [ T ] > for ThinVec < T > {
20572057 /// Allocate a `ThinVec<T>` and fill it by cloning `s`'s items.
20582058 ///
You can’t perform that action at this time.
0 commit comments