rust/tests/ui/author/matches.rs
2025-02-15 13:38:16 +01:00

15 lines
214 B
Rust

//@ check-pass
#![allow(clippy::let_and_return)]
fn main() {
#[clippy::author]
let a = match 42 {
16 => 5,
17 => {
let x = 3;
x
},
_ => 1,
};
}