summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-58734.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-58734.stderr')
-rw-r--r--tests/ui/issues/issue-58734.stderr23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-58734.stderr b/tests/ui/issues/issue-58734.stderr
new file mode 100644
index 000000000..d2314626d
--- /dev/null
+++ b/tests/ui/issues/issue-58734.stderr
@@ -0,0 +1,23 @@
+warning: trait objects without an explicit `dyn` are deprecated
+ --> $DIR/issue-58734.rs:20:5
+ |
+LL | Trait::nonexistent(());
+ | ^^^^^
+ |
+ = 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>
+ = note: `#[warn(bare_trait_objects)]` on by default
+help: use `dyn`
+ |
+LL | <dyn Trait>::nonexistent(());
+ | ++++ +
+
+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(());
+ | ^^^^^^^^^^^ function or associated item not found in `dyn Trait`
+
+error: aborting due to previous error; 1 warning emitted
+
+For more information about this error, try `rustc --explain E0599`.