rust/tests/ui/bytes_nth.fixed

12 lines
224 B
Rust
Raw Normal View History

// run-rustfix
#![allow(clippy::unnecessary_operation)]
#![warn(clippy::bytes_nth)]
fn main() {
let s = String::from("String");
s.as_bytes().get(3);
2021-06-18 10:11:32 +02:00
let _ = &s.as_bytes().get(3);
s[..].as_bytes().get(3);
}