summaryrefslogtreecommitdiffstats
path: root/tests/ui/trait-bounds/impl-bound-with-references-error.stderr
blob: 63280b8616fe5624ec46206b7101b8f88435d9c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
error[E0412]: cannot find type `Cow` in this scope
  --> $DIR/impl-bound-with-references-error.rs:12:13
   |
LL |     T: Into<Cow<'static, str>>,
   |             ^^^ not found in this scope
   |
help: consider importing this enum
   |
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 | |
LL | | where
LL | |     T: Into<Cow<'static, str>>,
   | |_______________________________^
   |
   = note: conflicting implementation in crate `core`:
           - impl<T> From<T> for T;

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0119, E0412.
For more information about an error, try `rustc --explain E0119`.