2015-11-20 05:22:52 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
#![deny(block_in_if_condition_expr)]
|
|
|
|
#![deny(block_in_if_condition_stmt)]
|
2016-01-31 22:25:10 +00:00
|
|
|
#![allow(unused, let_and_return)]
|
2016-03-23 13:50:47 +00:00
|
|
|
#![warn(nonminimal_bool)]
|
2015-11-20 05:22:52 +00:00
|
|
|
|
2016-01-02 16:11:48 +00:00
|
|
|
|
|
|
|
macro_rules! blocky {
|
|
|
|
() => {{true}}
|
|
|
|
}
|
|
|
|
|
2016-01-31 22:25:10 +00:00
|
|
|
macro_rules! blocky_too {
|
|
|
|
() => {{
|
|
|
|
let r = true;
|
|
|
|
r
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
2016-01-02 16:11:48 +00:00
|
|
|
fn macro_if() {
|
|
|
|
if blocky!() {
|
|
|
|
}
|
2016-12-21 11:30:41 +00:00
|
|
|
|
2016-01-31 22:25:10 +00:00
|
|
|
if blocky_too!() {
|
|
|
|
}
|
2016-01-02 16:11:48 +00:00
|
|
|
}
|
2016-01-31 22:25:10 +00:00
|
|
|
|
2015-11-20 05:22:52 +00:00
|
|
|
fn condition_has_block() -> i32 {
|
2016-12-21 11:30:41 +00:00
|
|
|
if { //~ERROR in an 'if' condition, avoid complex blocks or closures with blocks;
|
2015-11-20 05:22:52 +00:00
|
|
|
let x = 3;
|
|
|
|
x == 3
|
|
|
|
} {
|
|
|
|
6
|
|
|
|
} else {
|
|
|
|
10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn condition_has_block_with_single_expression() -> i32 {
|
|
|
|
if { true } { //~ERROR omit braces around single expression condition
|
|
|
|
6
|
|
|
|
} else {
|
|
|
|
10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn predicate<F: FnOnce(T) -> bool, T>(pfn: F, val:T) -> bool {
|
|
|
|
pfn(val)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn pred_test() {
|
|
|
|
let v = 3;
|
|
|
|
let sky = "blue";
|
|
|
|
// this is a sneaky case, where the block isn't directly in the condition, but is actually
|
|
|
|
// inside a closure that the condition is using. same principle applies. add some extra
|
|
|
|
// expressions to make sure linter isn't confused by them.
|
2016-12-21 11:30:41 +00:00
|
|
|
if v == 3 && sky == "blue" && predicate(|x| { let target = 3; x == target }, v) {
|
|
|
|
//~^ERROR in an 'if' condition, avoid complex blocks or closures with blocks;
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 11:30:41 +00:00
|
|
|
if predicate(|x| { let target = 3; x == target }, v) {
|
|
|
|
//~^ERROR in an 'if' condition, avoid complex blocks or closures with blocks;
|
2015-11-20 05:22:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn condition_is_normal() -> i32 {
|
|
|
|
let x = 3;
|
2016-03-23 11:19:13 +00:00
|
|
|
if true && x == 3 { //~ WARN this boolean expression can be simplified
|
2015-11-20 05:22:52 +00:00
|
|
|
6
|
|
|
|
} else {
|
|
|
|
10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn closure_without_block() {
|
|
|
|
if predicate(|x| x == 3, 6) {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-23 01:12:08 +00:00
|
|
|
fn condition_is_unsafe_block() {
|
|
|
|
let a: i32 = 1;
|
|
|
|
|
|
|
|
// this should not warn because the condition is an unsafe block
|
|
|
|
if unsafe { 1u32 == std::mem::transmute(a) } {
|
|
|
|
println!("1u32 == a");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 05:22:52 +00:00
|
|
|
fn main() {
|
|
|
|
}
|