2023-07-19 12:28:40 -05:00
|
|
|
error[E0119]: conflicting implementations of trait `Bar` for type `&_`
|
2023-11-19 13:19:51 -06:00
|
|
|
--> $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
|
|
|
|
2023-11-21 09:44:16 -06: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`.
|