File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -6066,7 +6066,6 @@ Released 2018-09-13
60666066[ `size_of_in_element_count` ] : https://rust-lang.github.io/rust-clippy/master/index.html#size_of_in_element_count
60676067[ `size_of_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#size_of_ref
60686068[ `skip_while_next` ] : https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
6069- [ `slice_as_bytes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#slice_as_bytes
60706069[ `slow_vector_initialization` ] : https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
60716070[ `stable_sort_primitive` ] : https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
60726071[ `std_instead_of_alloc` ] : https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc
Original file line number Diff line number Diff line change @@ -32,4 +32,4 @@ fn main() {
3232
3333 let f = Foo;
3434 let bytes = f[0..4].as_bytes();
35- }
35+ }
Original file line number Diff line number Diff line change @@ -33,4 +33,4 @@ fn main() {
3333
3434 let f = Foo ;
3535 let bytes = f[ 0 ..4 ] . as_bytes ( ) ;
36- }
36+ }
You can’t perform that action at this time.
0 commit comments