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

9 lines
152 B
Rust

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