]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/author/for_loop.rs
New upstream version 1.28.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / author / for_loop.rs
CommitLineData
94b46f34
XL
1#![feature(custom_attribute)]
2
3fn main() {
4 #[clippy(author)]
5 for y in 0..10 {
6 let z = y;
7 }
8}