summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/bytes_nth.fixed
blob: 46b7833f42804c2b55787d49b947e9fca45fcc38 (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.as_bytes().get(3);
    let _ = &s.as_bytes().get(3);
    s[..].as_bytes().get(3);
}