blob: 5dbe84ecec8b713e25dc3039284550d5e9efb246 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![allow(clippy::unnecessary_operation)]
#![allow(clippy::sliced_string_as_bytes)]
#![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);
}
|