mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-19 22:20:36 +00:00
10 lines
175 B
Rust
10 lines
175 B
Rust
fn main() {
|
|
let a = 0;
|
|
let _b = 0;
|
|
let _ = 0;
|
|
let mut b = 0;
|
|
let mut _b = 0;
|
|
let mut _ = 0;
|
|
//~^ ERROR `mut` must be followed by a named binding
|
|
}
|