Skip to content

Commit c8ef512

Browse files
authored
Rollup merge of rust-lang#60201 - RalfJung:core-tests, r=alexcrichton
coretest: Downgrade deny to warn The `deny` causes a build failure in https://github.com/RalfJung/miri-test-libstd. Since we use `-D warnings` for rustc builds, `warn` should be enough to lead to compile errors here, without impeding external builds.
2 parents 2821329 + 4cb6d1c commit c8ef512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/tests/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#![feature(slice_partition_dedup)]
3232
#![feature(copy_within)]
3333
#![feature(int_error_matching)]
34-
#![deny(rust_2018_idioms)]
34+
#![warn(rust_2018_idioms)]
3535

3636
extern crate test;
3737

0 commit comments

Comments
 (0)