summaryrefslogtreecommitdiffstats
path: root/tests/ui/trait-bounds/impl-bound-with-references-error.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/trait-bounds/impl-bound-with-references-error.stderr')
-rw-r--r--tests/ui/trait-bounds/impl-bound-with-references-error.stderr7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/ui/trait-bounds/impl-bound-with-references-error.stderr b/tests/ui/trait-bounds/impl-bound-with-references-error.stderr
index b114d295d..63280b861 100644
--- a/tests/ui/trait-bounds/impl-bound-with-references-error.stderr
+++ b/tests/ui/trait-bounds/impl-bound-with-references-error.stderr
@@ -12,8 +12,11 @@ LL + use std::borrow::Cow;
error[E0119]: conflicting implementations of trait `From<LabelText>` for type `LabelText`
--> $DIR/impl-bound-with-references-error.rs:9:1
|
-LL | impl<T> From<T> for LabelText
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | / impl<T> From<T> for LabelText
+LL | |
+LL | | where
+LL | | T: Into<Cow<'static, str>>,
+ | |_______________________________^
|
= note: conflicting implementation in crate `core`:
- impl<T> From<T> for T;