rust/tests/ui/bytes_nth.rs
2021-02-08 01:34:59 +09:00

9 lines
146 B
Rust

// run-rustfix
#![warn(clippy::bytes_nth)]
fn main() {
let _ = "Hello".bytes().nth(3);
let _ = String::from("Hello").bytes().nth(3);
}