summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/associated_type_bound/check-trait-object-bounds-4.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/associated_type_bound/check-trait-object-bounds-4.stderr')
-rw-r--r--tests/ui/traits/associated_type_bound/check-trait-object-bounds-4.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/traits/associated_type_bound/check-trait-object-bounds-4.stderr b/tests/ui/traits/associated_type_bound/check-trait-object-bounds-4.stderr
new file mode 100644
index 000000000..4891ee9c2
--- /dev/null
+++ b/tests/ui/traits/associated_type_bound/check-trait-object-bounds-4.stderr
@@ -0,0 +1,16 @@
+error[E0277]: the trait bound `str: Clone` is not satisfied
+ --> $DIR/check-trait-object-bounds-4.rs:15:9
+ |
+LL | f::<dyn X<Y = str>>();
+ | ^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `str`
+ |
+ = help: the trait `Clone` is implemented for `String`
+note: required by a bound in `f`
+ --> $DIR/check-trait-object-bounds-4.rs:10:9
+ |
+LL | fn f<T: X + ?Sized>() {
+ | ^ required by this bound in `f`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.