]> git.lizzy.rs Git - rust.git/blob - tests/ui/bytes_nth.rs
257344c2d32952e490ecdf08e1cc1af519136f9e
[rust.git] / tests / ui / bytes_nth.rs
1 // run-rustfix
2
3 #![warn(clippy::bytes_nth)]
4
5 fn main() {
6     let _ = "Hello".bytes().nth(3);
7
8     let _ = String::from("Hello").bytes().nth(3);
9 }