]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/bytes_nth.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / bytes_nth.rs
1 // run-rustfix
2
3 #![allow(clippy::unnecessary_operation)]
4 #![warn(clippy::bytes_nth)]
5
6 fn main() {
7 let s = String::from("String");
8 s.bytes().nth(3);
9 let _ = &s.bytes().nth(3);
10 s[..].bytes().nth(3);
11 }