]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/author/matches.rs
New upstream version 1.28.0~beta.14+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / author / matches.rs
1 #![feature(custom_attribute)]
2
3 fn main() {
4 #[clippy(author)]
5 let a = match 42 {
6 16 => 5,
7 17 => {
8 let x = 3;
9 x
10 },
11 _ => 1,
12 };
13 }