mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +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
|
||
|
}
|