rust-clippy/tests/ui/bytes_nth.rs

12 lines
231 B
Rust
Raw Normal View History

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