Files
rust/tests/ui/bytes_nth.rs

10 lines
146 B
Rust
Raw Normal View History

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