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

6 lines
125 B
Rust
Raw Permalink 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
};
}