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