rust/tests/ui/let-else/let-else-check.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
403 B
Rust
Raw Normal View History

2021-08-01 19:18:50 -05:00
#![deny(unused_variables)]
fn main() {
// type annotation, attributes
#[allow(unused_variables)]
let Some(_): Option<u32> = Some(Default::default()) else {
let x = 1; // OK
return;
};
let Some(_): Option<u32> = Some(Default::default()) else {
let x = 1; //~ ERROR unused variable: `x`
return;
};
2021-08-01 19:18:50 -05:00
let x = 1; //~ ERROR unused variable: `x`
}