rust-clippy/tests/ui/bytes_nth.rs

10 lines
146 B
Rust
Raw Normal View History

2021-02-07 16:34:59 +00:00
// run-rustfix
#![warn(clippy::bytes_nth)]
fn main() {
let _ = "Hello".bytes().nth(3);
let _ = String::from("Hello").bytes().nth(3);
}