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);
|
||
|
|
}
|