]> git.lizzy.rs Git - rust.git/blob - tests/ui/author/for_loop.rs
5faf440676d09444e0691bcc00b2e7ba5696acdf
[rust.git] / tests / ui / author / for_loop.rs
1 #![feature(tool_attributes)]
2
3 fn main() {
4     #[clippy::author]
5     for y in 0..10 {
6         let z = y;
7     }
8 }