mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 08:27:14 +00:00
11 lines
215 B
Rust
11 lines
215 B
Rust
// run-rustfix
|
|
|
|
#![allow(clippy::unnecessary_operation)]
|
|
#![warn(clippy::bytes_nth)]
|
|
|
|
fn main() {
|
|
let s = String::from("String");
|
|
s.bytes().nth(3);
|
|
let _ = &s.bytes().nth(3);
|
|
s[..].bytes().nth(3);
|
|
}
|