summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/bytes_nth.rs
blob: b7d813fe296a9e75f42bab21763b3089e491a1c7 (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");
    let _ = s.bytes().nth(3);
    let _ = &s.bytes().nth(3).unwrap();
    let _ = s[..].bytes().nth(3);
}