mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 10:48:36 +00:00
10 lines
146 B
Rust
10 lines
146 B
Rust
|
// run-rustfix
|
||
|
|
||
|
#![warn(clippy::bytes_nth)]
|
||
|
|
||
|
fn main() {
|
||
|
let _ = "Hello".bytes().nth(3);
|
||
|
|
||
|
let _ = String::from("Hello").bytes().nth(3);
|
||
|
}
|