File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ macro_rules! tool_check_step {
321
321
}
322
322
323
323
// Enable internal lints for clippy and rustdoc
324
- // NOTE: this doesn't enable lints for any other tools unless they explicitly add `#![deny (rustc::internal)]`
324
+ // NOTE: this doesn't enable lints for any other tools unless they explicitly add `#![warn (rustc::internal)]`
325
325
// See https://github.com/rust-lang/rust/pull/80573#issuecomment-754010776
326
326
cargo. rustflag( "-Zunstable-options" ) ;
327
327
Original file line number Diff line number Diff line change 16
16
#![ feature( type_ascription) ]
17
17
#![ feature( iter_intersperse) ]
18
18
#![ recursion_limit = "256" ]
19
- #![ deny ( rustc:: internal) ]
19
+ #![ warn ( rustc:: internal) ]
20
20
21
21
#[ macro_use]
22
22
extern crate lazy_static;
Original file line number Diff line number Diff line change 17
17
// warn on lints, that are included in `rust-lang/rust`s bootstrap
18
18
#![ warn( rust_2018_idioms, unused_lifetimes) ]
19
19
// warn on rustc internal lints
20
- #![ deny ( rustc:: internal) ]
20
+ #![ warn ( rustc:: internal) ]
21
21
22
22
// FIXME: switch to something more ergonomic here, once available.
23
23
// (Currently there is no way to opt into sysroot crates without `extern crate`.)
Original file line number Diff line number Diff line change 4
4
// warn on lints, that are included in `rust-lang/rust`s bootstrap
5
5
#![ warn( rust_2018_idioms, unused_lifetimes) ]
6
6
// warn on rustc internal lints
7
- #![ deny ( rustc:: internal) ]
7
+ #![ warn ( rustc:: internal) ]
8
8
9
9
// FIXME: switch to something more ergonomic here, once available.
10
10
// (Currently there is no way to opt into sysroot crates without `extern crate`.)
You can’t perform that action at this time.
0 commit comments