summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/suggest-deferences/multiple-1.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/suggest-deferences/multiple-1.stderr')
-rw-r--r--src/test/ui/traits/suggest-deferences/multiple-1.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/traits/suggest-deferences/multiple-1.stderr b/src/test/ui/traits/suggest-deferences/multiple-1.stderr
new file mode 100644
index 000000000..6e12321c2
--- /dev/null
+++ b/src/test/ui/traits/suggest-deferences/multiple-1.stderr
@@ -0,0 +1,18 @@
+error[E0277]: the trait bound `&mut Baz: Happy` is not satisfied
+ --> $DIR/multiple-1.rs:52:9
+ |
+LL | foo(&mut baz);
+ | --- ^^^^^^^^ the trait `Happy` is not implemented for `&mut Baz`
+ | |
+ | required by a bound introduced by this call
+ |
+ = help: the trait `Happy` is implemented for `&mut LDM`
+note: required by a bound in `foo`
+ --> $DIR/multiple-1.rs:45: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`.