mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
10 lines
198 B
Rust
10 lines
198 B
Rust
pub fn main() {
|
|
const x: i32 = 4;
|
|
let x: i32 = 3;
|
|
//~^ ERROR refutable pattern in local binding
|
|
|
|
const y: i32 = 3;
|
|
let y = 4;
|
|
//~^ ERROR refutable pattern in local binding
|
|
}
|