summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/suggest-deferences/multiple-0.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/suggest-deferences/multiple-0.stderr')
-rw-r--r--src/test/ui/traits/suggest-deferences/multiple-0.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/traits/suggest-deferences/multiple-0.stderr b/src/test/ui/traits/suggest-deferences/multiple-0.stderr
new file mode 100644
index 000000000..efb3c7d12
--- /dev/null
+++ b/src/test/ui/traits/suggest-deferences/multiple-0.stderr
@@ -0,0 +1,19 @@
+error[E0277]: the trait bound `&Baz: Happy` is not satisfied
+ --> $DIR/multiple-0.rs:34:9
+ |
+LL | foo(&baz);
+ | --- ^^^^
+ | | |
+ | | the trait `Happy` is not implemented for `&Baz`
+ | | help: consider dereferencing here: `&***baz`
+ | required by a bound introduced by this call
+ |
+note: required by a bound in `foo`
+ --> $DIR/multiple-0.rs:30:26
+ |
+LL | fn foo<T>(_: T) where T: Happy {}
+ | ^^^^^ required by this bound in `foo`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.