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