2021-07-10 08:00:54 +00:00
|
|
|
warning: trait objects without an explicit `dyn` are deprecated
|
|
|
|
--> $DIR/issue-58734.rs:20:5
|
|
|
|
|
|
|
|
|
LL | Trait::nonexistent(());
|
2021-11-01 09:01:42 +00:00
|
|
|
| ^^^^^
|
2021-07-10 08:00:54 +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>
|
2022-09-18 15:55:36 +00:00
|
|
|
= note: `#[warn(bare_trait_objects)]` on by default
|
2024-09-25 08:38:40 +00:00
|
|
|
help: if this is a dyn-compatible trait, use `dyn`
|
2021-11-01 09:01:42 +00:00
|
|
|
|
|
|
|
|
LL | <dyn Trait>::nonexistent(());
|
|
|
|
| ++++ +
|
2021-07-10 08:00:54 +00:00
|
|
|
|
2025-02-12 14:52:15 +00:00
|
|
|
error[E0038]: the trait `Trait` is not dyn compatible
|
|
|
|
--> $DIR/issue-58734.rs:20:5
|
|
|
|
|
|
|
|
|
LL | Trait::nonexistent(());
|
|
|
|
| ^^^^^ `Trait` is not dyn compatible
|
|
|
|
|
|
|
|
|
note: for a trait to be dyn compatible it needs to allow building a vtable
|
|
|
|
for more information, visit <https://doc.rust-lang.org/reference/items/traits.html#dyn-compatibility>
|
|
|
|
--> $DIR/issue-58734.rs:4:8
|
|
|
|
|
|
|
|
|
LL | trait Trait {
|
|
|
|
| ----- this trait is not dyn compatible...
|
|
|
|
...
|
|
|
|
LL | fn dyn_incompatible() -> Self;
|
|
|
|
| ^^^^^^^^^^^^^^^^ ...because associated function `dyn_incompatible` has no `self` parameter
|
|
|
|
= help: only type `()` implements `Trait`; consider using it directly instead.
|
|
|
|
help: consider turning `dyn_incompatible` into a method by giving it a `&self` argument
|
|
|
|
|
|
|
|
|
LL | fn dyn_incompatible(&self) -> Self;
|
|
|
|
| +++++
|
|
|
|
help: alternatively, consider constraining `dyn_incompatible` so it does not apply to trait objects
|
|
|
|
|
|
|
|
|
LL | fn dyn_incompatible() -> Self where Self: Sized;
|
|
|
|
| +++++++++++++++++
|
|
|
|
|
2020-01-08 16:05:31 +00:00
|
|
|
error[E0599]: no function or associated item named `nonexistent` found for trait object `dyn Trait` in the current scope
|
2019-03-05 03:24:52 +00:00
|
|
|
--> $DIR/issue-58734.rs:20:12
|
|
|
|
|
|
|
|
|
LL | Trait::nonexistent(());
|
2019-03-23 21:10:29 +00:00
|
|
|
| ^^^^^^^^^^^ function or associated item not found in `dyn Trait`
|
2019-03-05 03:24:52 +00:00
|
|
|
|
2025-02-12 14:52:15 +00:00
|
|
|
error: aborting due to 2 previous errors; 1 warning emitted
|
2019-03-05 03:24:52 +00:00
|
|
|
|
2025-02-12 14:52:15 +00:00
|
|
|
Some errors have detailed explanations: E0038, E0599.
|
|
|
|
For more information about an error, try `rustc --explain E0038`.
|