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