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 @@ -6064,7 +6064,6 @@ Released 2018-09-13
6064
6064
[ `size_of_in_element_count` ] : https://rust-lang.github.io/rust-clippy/master/index.html#size_of_in_element_count
6065
6065
[ `size_of_ref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#size_of_ref
6066
6066
[ `skip_while_next` ] : https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
6067
- [ `slice_as_bytes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#slice_as_bytes
6068
6067
[ `slow_vector_initialization` ] : https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
6069
6068
[ `stable_sort_primitive` ] : https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
6070
6069
[ `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() {
32
32
33
33
let f = Foo;
34
34
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() {
33
33
34
34
let f = Foo ;
35
35
let bytes = f[ 0 ..4 ] . as_bytes ( ) ;
36
- }
36
+ }
You can’t perform that action at this time.
0 commit comments