mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
8 lines
165 B
Rust
8 lines
165 B
Rust
fn main() {
|
|
let 5 = 6;
|
|
//~^ error refutable pattern in local binding [E0005]
|
|
|
|
let x @ 5 = 6;
|
|
//~^ error refutable pattern in local binding [E0005]
|
|
}
|