rust/tests/ui/coherence/negative-coherence-considering-regions.any_lt.stderr

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

15 lines
510 B
Plaintext
Raw Normal View History

2023-07-19 12:28:40 -05:00
error[E0119]: conflicting implementations of trait `Bar` for type `&_`
--> $DIR/negative-coherence-considering-regions.rs:16:1
2023-07-19 12:28:40 -05:00
|
LL | impl<T> Bar for T where T: Foo {}
| ------------------------------ first implementation here
...
LL | impl<T> Bar for &T {}
| ^^^^^^^^^^^^^^^^^^ conflicting implementation for `&_`
2024-09-21 02:02:51 -05:00
|
= note: downstream crates may implement trait `Foo` for type `&_`
2023-07-19 12:28:40 -05:00
error: aborting due to 1 previous error
2023-07-19 12:28:40 -05:00
For more information about this error, try `rustc --explain E0119`.