Skip to content

Commit 4b3c66d

Browse files
committed
make lint warn by default
1 parent 363faba commit 4b3c66d

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

src/librustc_session/lint/builtin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ declare_lint! {
262262

263263
declare_lint! {
264264
pub COHERENCE_LEAK_CHECK,
265-
Deny,
265+
Warn,
266266
"distinct impls distinguished only by the leak-check code",
267267
@future_incompatible = FutureIncompatibleInfo {
268268
reference: "issue #56105 <https://github.com/rust-lang/rust/issues/56105>",
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
error: conflicting implementations of trait `TheTrait` for type `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`:
2-
--> $DIR/coherence-subtyping.rs:15:1
1+
warning: conflicting implementations of trait `TheTrait` for type `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`:
2+
--> $DIR/coherence-subtyping.rs:16:1
33
|
44
LL | impl TheTrait for for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8 {}
55
| ---------------------------------------------------------- first implementation here
66
LL |
77
LL | impl TheTrait for for<'a> fn(&'a u8, &'a u8) -> &'a u8 {
88
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`
99
|
10-
= note: `#[deny(coherence_leak_check)]` on by default
10+
= note: `#[warn(coherence_leak_check)]` on by default
1111
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1212
= note: for more information, see issue #56105 <https://github.com/rust-lang/rust/issues/56105>
1313
= note: this behavior recently changed as a result of a bug fix; see rust-lang/rust#56105 for details
1414

15-
error: aborting due to previous error
16-
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
error: conflicting implementations of trait `TheTrait` for type `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`:
2-
--> $DIR/coherence-subtyping.rs:15:1
1+
warning: conflicting implementations of trait `TheTrait` for type `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`:
2+
--> $DIR/coherence-subtyping.rs:16:1
33
|
44
LL | impl TheTrait for for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8 {}
55
| ---------------------------------------------------------- first implementation here
66
LL |
77
LL | impl TheTrait for for<'a> fn(&'a u8, &'a u8) -> &'a u8 {
88
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8`
99
|
10-
= note: `#[deny(coherence_leak_check)]` on by default
10+
= note: `#[warn(coherence_leak_check)]` on by default
1111
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
1212
= note: for more information, see issue #56105 <https://github.com/rust-lang/rust/issues/56105>
1313
= note: this behavior recently changed as a result of a bug fix; see rust-lang/rust#56105 for details
1414

15-
error: aborting due to previous error
16-

src/test/ui/coherence/coherence-subtyping.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// universe transition (#56105) may eventually become an error.
66

77
// revisions: old re
8+
// check-pass
89

910
trait TheTrait {
1011
fn foo(&self) {}
@@ -13,9 +14,9 @@ trait TheTrait {
1314
impl TheTrait for for<'a, 'b> fn(&'a u8, &'b u8) -> &'a u8 {}
1415

1516
impl TheTrait for for<'a> fn(&'a u8, &'a u8) -> &'a u8 {
16-
//[re]~^ ERROR conflicting implementation
17+
//[re]~^ WARNING conflicting implementation
1718
//[re]~^^ WARNING this was previously accepted by the compiler but is being phased out
18-
//[old]~^^^ ERROR conflicting implementation
19+
//[old]~^^^ WARNING conflicting implementation
1920
//[old]~^^^^ WARNING this was previously accepted by the compiler but is being phased out
2021
}
2122

0 commit comments

Comments
 (0)