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