Sign in
rust
/
rust-clippy
/
ef6e711dc1c8feaa1f00a41bc5b0ca9fcbce1fb3
/
.
/
tests
/
ui
/
bytes_nth.fixed
blob: c88d7eb2ace38fde82af3bde3ef6bbe2bc93366d [
file
]
#![warn(clippy::bytes_nth)]
fn main
()
{
let
s
=
String
::
from
(
"String"
);
let
_
=
s
.
as_bytes
().
get
(
3
).
copied
();
//~^ bytes_nth
let
_
=
&
s
.
as_bytes
()[
3
];
//~^ bytes_nth
let
_
=
s
[..].
as_bytes
().
get
(
3
).
copied
();
//~^ bytes_nth
}