mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
158 B
Rust
11 lines
158 B
Rust
|
#![deny(unused_variables)]
|
||
|
|
||
|
fn f(_: i32) {}
|
||
|
|
||
|
fn main() {
|
||
|
let mut v = 0;
|
||
|
f(v);
|
||
|
v = match 0 { a => 0 }; //~ ERROR: unused variable: `a`
|
||
|
f(v);
|
||
|
}
|