mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
9 lines
257 B
Rust
9 lines
257 B
Rust
// https://github.com/rust-lang/rust/issues/123844
|
|
// An uninitialized refutable let should not suggest `let else`, as it can't be used with deferred
|
|
// initialization.
|
|
|
|
fn main() {
|
|
let Some(x); //~ ERROR refutable pattern in local binding
|
|
x = 1;
|
|
}
|