rust/tests/ui/bytes_nth.rs

12 lines
215 B
Rust
Raw Normal View History

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