mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
13 lines
274 B
Rust
Executable file
13 lines
274 B
Rust
Executable file
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#![deny(let_unit_value)]
|
|
|
|
fn main() {
|
|
let _x = println!("x"); //~ERROR this let-binding has unit value
|
|
let _y = 1; // this is fine
|
|
let _z = ((), 1); // this as well
|
|
if true {
|
|
let _a = (); //~ERROR
|
|
}
|
|
}
|