auto merge of #9638 : pnkfelix/rust/fsk-issue7526-attempt-to-catch-nonuc-statics-in-match-patterns, r=alexcrichton
r? anyone Address scariest part of #7526 by adding a new more specific lint (that is set to warn by default, rather than allow).
This commit is contained in:
commit
97cd495aca
13 changed files with 172 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
//! Operations and constants for `f32`
|
||||
#[allow(missing_doc)];
|
||||
#[allow(non_uppercase_statics)];
|
||||
#[allow(non_uppercase_pattern_statics)];
|
||||
|
||||
use default::Default;
|
||||
use libc::c_int;
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
#[allow(missing_doc)];
|
||||
#[allow(non_uppercase_statics)];
|
||||
#[allow(non_uppercase_pattern_statics)];
|
||||
|
||||
use default::Default;
|
||||
use libc::c_int;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue