mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 09:44:08 +00:00
Fix compile-fail tests by allowing double_parens.
This commit is contained in:
parent
e1c540bfd1
commit
c0c20145d1
@ -2,7 +2,7 @@
|
||||
#![plugin(clippy)]
|
||||
|
||||
#[deny(eq_op)]
|
||||
#[allow(identity_op)]
|
||||
#[allow(identity_op, double_parens)]
|
||||
#[allow(no_effect, unused_variables, unnecessary_operation)]
|
||||
#[deny(nonminimal_bool)]
|
||||
fn main() {
|
||||
|
@ -5,7 +5,7 @@ const ONE : i64 = 1;
|
||||
const NEG_ONE : i64 = -1;
|
||||
const ZERO : i64 = 0;
|
||||
|
||||
#[allow(eq_op, no_effect, unnecessary_operation)]
|
||||
#[allow(eq_op, no_effect, unnecessary_operation, double_parens)]
|
||||
#[deny(identity_op)]
|
||||
fn main() {
|
||||
let x = 0;
|
||||
|
@ -9,7 +9,7 @@ fn get_reference(n : &usize) -> &usize {
|
||||
n
|
||||
}
|
||||
|
||||
#[allow(many_single_char_names)]
|
||||
#[allow(many_single_char_names, double_parens)]
|
||||
#[allow(unused_variables)]
|
||||
#[deny(deref_addrof)]
|
||||
fn main() {
|
||||
|
Loading…
Reference in New Issue
Block a user