Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
bytes_nth.rs
blob: 2684474248c1aa6ae7d1dc927d2ad0e9fe893989 [
file
]
#![
warn
(
clippy
::
bytes_nth
)]
fn
main
()
{
let
s
=
String
::
from
(
"String"
);
let
_
=
s
.
bytes
().
nth
(
3
);
//~^ bytes_nth
let
_
=
&
s
.
bytes
().
nth
(
3
).
unwrap
();
//~^ bytes_nth
let
_
=
s
[..].
bytes
().
nth
(
3
);
//~^ bytes_nth
}