2021-07-10 03:00:54 -05:00
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-58734.rs:20:5
|
|
|
|
|
|
|
|
|
LL | Trait::nonexistent(());
|
2021-11-01 04:01:42 -05:00
|
|
|
| ^^^^^
|
2021-07-10 03:00:54 -05: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>
|
2022-09-18 10:55:36 -05:00
|
|
|
= note: `#[warn(bare_trait_objects)]` on by default
|
2024-09-25 03:38:40 -05:00
|
|
|
help: if this is a dyn-compatible trait, use `dyn`
|
2021-11-01 04:01:42 -05:00
|
|
|
|
|
|
|
|
LL | <dyn Trait>::nonexistent(());
|
|
|
|
| ++++ +
|
2021-07-10 03:00:54 -05:00
|
|
|
|
2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no function or associated item named `nonexistent` found for trait object `dyn Trait` in the current scope
|
2019-03-04 21:24:52 -06:00
|
|
|
--> $DIR/issue-58734.rs:20:12
|
|
|
|
|
|
|
|
|
LL | Trait::nonexistent(());
|
2019-03-23 16:10:29 -05:00
|
|
|
| ^^^^^^^^^^^ function or associated item not found in `dyn Trait`
|
2019-03-04 21:24:52 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error; 1 warning emitted
|
2019-03-04 21:24:52 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|