rust/tests/compile-fail/let_unit.rs
Georg Brandl 7aee04878f tests: use fragment of lint text for error checking
(Did not touch strings.rs, which is fixed by @llogiq's PR)
2015-08-13 08:12:07 +02:00

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
}
}