rust-clippy/tests/ui/bytes_nth.fixed

10 lines
152 B
Rust
Raw Normal View History

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