12 lines
207 B
Rust
12 lines
207 B
Rust
|
// run-rustfix
|
||
|
|
||
|
#![allow(clippy::unnecessary_operation)]
|
||
|
#![warn(clippy::bytes_nth)]
|
||
|
|
||
|
fn main() {
|
||
|
let s = String::from("String");
|
||
|
s.bytes().nth(3);
|
||
|
&s.bytes().nth(3);
|
||
|
s[..].bytes().nth(3);
|
||
|
}
|