2021-02-11 14:04:38 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![allow(clippy::unnecessary_operation)]
|
|
|
|
#![warn(clippy::bytes_nth)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let s = String::from("String");
|
|
|
|
s.bytes().nth(3);
|
2021-06-18 08:11:32 +00:00
|
|
|
let _ = &s.bytes().nth(3);
|
2021-02-11 14:04:38 +00:00
|
|
|
s[..].bytes().nth(3);
|
|
|
|
}
|