8 lines
179 B
Rust
8 lines
179 B
Rust
fn main() {
|
|
let a = 0;
|
|
let _b = 0;
|
|
let _ = 0;
|
|
let mut b = 0;
|
|
let mut _b = 0;
|
|
let mut _ = 0; //~ ERROR expected identifier, found reserved identifier `_`
|
|
}
|