mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-10 22:13:27 +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
|
||
|
}
|