mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
11 lines
224 B
Rust
11 lines
224 B
Rust
// run-rustfix
|
|
|
|
#![allow(clippy::unnecessary_operation)]
|
|
#![warn(clippy::bytes_nth)]
|
|
|
|
fn main() {
|
|
let s = String::from("String");
|
|
s.as_bytes().get(3);
|
|
let _ = &s.as_bytes().get(3);
|
|
s[..].as_bytes().get(3);
|
|
}
|