blob: 629812cc02cb899961fb384c7d51cb698713a698 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// 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);
}
|