mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 18:28:40 +00:00
7aee04878f
(Did not touch strings.rs, which is fixed by @llogiq's PR)
13 lines
306 B
Rust
Executable file
13 lines
306 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 this let-binding has unit value
|
|
}
|
|
}
|