-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #88509 - m-ou-se:dyn-no-left-shift-right-shift-just-s…
…ingle-angle-brackets-please-thanks, r=petrochenkov Don't suggest extra <> in dyn suggestion. Fixes #88508
- Loading branch information
Showing
4 changed files
with
81 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// See https://github.com/rust-lang/rust/issues/88508 | ||
// run-rustfix | ||
// edition:2018 | ||
#![deny(bare_trait_objects)] | ||
#![allow(dead_code)] | ||
#![allow(unused_imports)] | ||
|
||
use std::fmt; | ||
|
||
#[derive(Debug)] | ||
pub struct Foo; | ||
|
||
impl fmt::Display for Foo { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
<dyn fmt::Debug>::fmt(self, f) | ||
//~^ ERROR trait objects without an explicit `dyn` are deprecated | ||
//~| WARNING this is accepted in the current edition | ||
//~| ERROR trait objects without an explicit `dyn` are deprecated | ||
//~| WARNING this is accepted in the current edition | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// See https://github.com/rust-lang/rust/issues/88508 | ||
// run-rustfix | ||
// edition:2018 | ||
#![deny(bare_trait_objects)] | ||
#![allow(dead_code)] | ||
#![allow(unused_imports)] | ||
|
||
use std::fmt; | ||
|
||
#[derive(Debug)] | ||
pub struct Foo; | ||
|
||
impl fmt::Display for Foo { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
<fmt::Debug>::fmt(self, f) | ||
//~^ ERROR trait objects without an explicit `dyn` are deprecated | ||
//~| WARNING this is accepted in the current edition | ||
//~| ERROR trait objects without an explicit `dyn` are deprecated | ||
//~| WARNING this is accepted in the current edition | ||
} | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
error: trait objects without an explicit `dyn` are deprecated | ||
--> $DIR/dyn-angle-brackets.rs:15:10 | ||
| | ||
LL | <fmt::Debug>::fmt(self, f) | ||
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Debug` | ||
| | ||
note: the lint level is defined here | ||
--> $DIR/dyn-angle-brackets.rs:4:9 | ||
| | ||
LL | #![deny(bare_trait_objects)] | ||
| ^^^^^^^^^^^^^^^^^^ | ||
= warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! | ||
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html> | ||
|
||
error: trait objects without an explicit `dyn` are deprecated | ||
--> $DIR/dyn-angle-brackets.rs:15:10 | ||
| | ||
LL | <fmt::Debug>::fmt(self, f) | ||
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Debug` | ||
| | ||
= warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! | ||
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html> | ||
|
||
error: aborting due to 2 previous errors | ||
|