rust/tests/ui/issues/issue-58734.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
918 B
Plaintext
Raw Normal View History

2021-07-10 10:00:54 +02:00
warning: trait objects without an explicit `dyn` are deprecated
--> $DIR/issue-58734.rs:20:5
|
LL | Trait::nonexistent(());
2021-11-01 10:01:42 +01:00
| ^^^^^
2021-07-10 10:00:54 +02: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 19:55:36 +04:00
= note: `#[warn(bare_trait_objects)]` on by default
2021-11-01 10:01:42 +01:00
help: use `dyn`
|
LL | <dyn Trait>::nonexistent(());
| ++++ +
2021-07-10 10:00:54 +02:00
error[E0599]: no function or associated item named `nonexistent` found for trait object `dyn Trait` in the current scope
--> $DIR/issue-58734.rs:20:12
|
LL | Trait::nonexistent(());
2019-03-23 14:10:29 -07:00
| ^^^^^^^^^^^ function or associated item not found in `dyn Trait`
2021-07-10 10:00:54 +02:00
error: aborting due to previous error; 1 warning emitted
For more information about this error, try `rustc --explain E0599`.