summaryrefslogtreecommitdiff
path: root/tests/ui/source-struct-not-error.stderr
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-15 20:18:36 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-15 20:18:36 +0000
commit6eba9cd92c295c5389944f6adda1f1e83b2cb008 (patch)
tree1150628bb9ff715ca3e6027637112f1ec3858139 /tests/ui/source-struct-not-error.stderr
downloadgentoo-utils-6eba9cd92c295c5389944f6adda1f1e83b2cb008.tar.gz
Squashed 'subprojects/thiserror/' content from commit 247eab5
git-subtree-dir: subprojects/thiserror git-subtree-split: 247eab5d79e27ad28859afdf8bc600a4242829b7
Diffstat (limited to 'tests/ui/source-struct-not-error.stderr')
-rw-r--r--tests/ui/source-struct-not-error.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/source-struct-not-error.stderr b/tests/ui/source-struct-not-error.stderr
new file mode 100644
index 0000000..07cd67a
--- /dev/null
+++ b/tests/ui/source-struct-not-error.stderr
@@ -0,0 +1,20 @@
+error[E0599]: the method `as_dyn_error` exists for struct `NotError`, but its trait bounds were not satisfied
+ --> tests/ui/source-struct-not-error.rs:9:5
+ |
+4 | struct NotError;
+ | --------------- method `as_dyn_error` not found for this struct because it doesn't satisfy `NotError: AsDynError<'_>` or `NotError: std::error::Error`
+...
+9 | source: NotError,
+ | ^^^^^^ method cannot be called on `NotError` due to unsatisfied trait bounds
+ |
+ = note: the following trait bounds were not satisfied:
+ `NotError: std::error::Error`
+ which is required by `NotError: AsDynError<'_>`
+note: the trait `std::error::Error` must be implemented
+ --> $RUST/core/src/error.rs
+ |
+ | pub trait Error: Debug + Display {
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ = help: items from traits can only be used if the trait is implemented and in scope
+ = note: the following trait defines an item `as_dyn_error`, perhaps you need to implement it:
+ candidate #1: `AsDynError`