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

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

6 lines
125 B
Rust
Raw Normal View History

2021-08-02 00:18:50 +00:00
fn main() {
let Some(x) = Some(2) else {
panic!("{}", x); //~ ERROR cannot find value `x` in this scope
};
}