summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unboxed-closures/unboxed-closure-sugar-equiv.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/unboxed-closures/unboxed-closure-sugar-equiv.stderr')
-rw-r--r--src/test/ui/unboxed-closures/unboxed-closure-sugar-equiv.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/unboxed-closures/unboxed-closure-sugar-equiv.stderr b/src/test/ui/unboxed-closures/unboxed-closure-sugar-equiv.stderr
new file mode 100644
index 000000000..bccbf307a
--- /dev/null
+++ b/src/test/ui/unboxed-closures/unboxed-closure-sugar-equiv.stderr
@@ -0,0 +1,15 @@
+error[E0277]: the trait bound `dyn Foo<(char,), Output = ()>: Eq<dyn Foo<(), Output = ()>>` is not satisfied
+ --> $DIR/unboxed-closure-sugar-equiv.rs:44:11
+ |
+LL | dyn Foo(char) >();
+ | ^^^^^^^^^^^^^ the trait `Eq<dyn Foo<(), Output = ()>>` is not implemented for `dyn Foo<(char,), Output = ()>`
+ |
+note: required by a bound in `eq`
+ --> $DIR/unboxed-closure-sugar-equiv.rs:16:28
+ |
+LL | fn eq<A: ?Sized,B: ?Sized +Eq<A>>() { }
+ | ^^^^^ required by this bound in `eq`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.