rust/tests/ui/error-codes/e0119/issue-23563.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
487 B
Plaintext
Raw Normal View History

2024-09-21 07:02:51 +00:00
error[E0119]: conflicting implementations of trait `LolFrom<&[u8]>` for type `LocalType<u8>`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-23563.rs:13:1
|
2019-03-09 12:03:44 +00:00
LL | impl<'a, T> LolFrom<&'a [T]> for LocalType<T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: conflicting implementation in crate `issue_23563_a`:
- impl<T, U> LolFrom<T> for U
where T: LolInto<U>;
error: aborting due to 1 previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0119`.