Sign in
rust
/
rust-clippy
/
62a82b361c02838afdf607d461726e0407f1a5ec
/
.
/
tests
/
ui
/
bytes_nth.fixed
blob: 11deb2390fd49161c842ea72e456446be903d0e8 [
file
] [
log
] [
blame
]
#![allow(clippy::unnecessary_operation)]
#![warn(clippy::bytes_nth)]
fn main
()
{
let
s
=
String
::
from
(
"String"
);
let
_
=
s
.
as_bytes
().
get
(
3
).
copied
();
let
_
=
&
s
.
as_bytes
()[
3
];
let
_
=
s
[..].
as_bytes
().
get
(
3
).
copied
();
}