blob: 7f3817b6ef1cc0633aef58b15c6c47b6a67ccf39 [file] [log] [blame] [edit]
#![deny(unused_must_use)]
pub fn fun() -> i32 {
function() && return 1;
//~^ ERROR: unused logical operation that must be used
return 0;
}
fn function() -> bool {
true
}
fn main() {}