2019-07-20 10:49:02 +01:00
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
2021-11-20 11:54:12 +01:00
|
|
|
--> $DIR/issue-61963.rs:28:14
|
2019-07-20 10:49:02 +01:00
|
|
|
|
|
|
|
|
LL | bar: Box<Bar>,
|
2021-11-01 10:01:42 +01:00
|
|
|
| ^^^
|
2019-07-20 10:49:02 +01:00
|
|
|
|
|
2022-09-18 19:55:36 +04:00
|
|
|
= warning: this is accepted in the current edition (Rust 2015) 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>
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2019-07-20 10:49:02 +01:00
|
|
|
--> $DIR/issue-61963.rs:3:9
|
|
|
|
|
|
|
|
|
LL | #![deny(bare_trait_objects)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2021-11-01 10:01:42 +01:00
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | bar: Box<dyn Bar>,
|
|
|
|
| +++
|
2019-07-20 10:49:02 +01:00
|
|
|
|
2020-05-20 15:33:58 -04:00
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-61963.rs:18:1
|
|
|
|
|
|
|
|
|
LL | pub struct Foo {
|
2021-11-01 10:01:42 +01:00
|
|
|
| ^^^
|
2021-04-16 11:06:51 +02:00
|
|
|
|
|
2021-06-16 14:27:44 +02:00
|
|
|
= warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021!
|
2021-08-09 17:45:01 +02:00
|
|
|
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/warnings-promoted-to-error.html>
|
2021-11-01 10:01:42 +01:00
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | dyn pub struct Foo {
|
|
|
|
| +++
|
2020-05-20 15:33:58 -04:00
|
|
|
|
2021-11-20 11:54:12 +01:00
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-61963.rs:28:14
|
|
|
|
|
|
|
|
|
LL | bar: Box<Bar>,
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) 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>
|
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | bar: Box<dyn Bar>,
|
|
|
|
| +++
|
2021-11-20 11:54:12 +01:00
|
|
|
|
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-61963.rs:28:14
|
|
|
|
|
|
|
|
|
LL | bar: Box<Bar>,
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) 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>
|
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | bar: Box<dyn Bar>,
|
|
|
|
| +++
|
2021-11-20 11:54:12 +01:00
|
|
|
|
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-61963.rs:18:1
|
|
|
|
|
|
|
|
|
LL | pub struct Foo {
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) 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>
|
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | dyn pub struct Foo {
|
|
|
|
| +++
|
2021-11-20 11:54:12 +01:00
|
|
|
|
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-61963.rs:18:1
|
|
|
|
|
|
|
|
|
LL | pub struct Foo {
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) 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>
|
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | dyn pub struct Foo {
|
|
|
|
| +++
|
2021-11-20 11:54:12 +01:00
|
|
|
|
|
|
|
error: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-61963.rs:18:1
|
|
|
|
|
|
|
|
|
LL | pub struct Foo {
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= warning: this is accepted in the current edition (Rust 2015) 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>
|
|
|
|
help: use `dyn`
|
|
|
|
|
|
2022-09-11 19:19:07 +00:00
|
|
|
LL | dyn pub struct Foo {
|
|
|
|
| +++
|
2021-11-20 11:54:12 +01:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
2019-07-20 10:49:02 +01:00
|
|
|
|