2018-11-26 20:59:49 -06:00
|
|
|
error[E0210]: type parameter `A` must be used as the type parameter for some local type (e.g., `MyStruct<A>`)
|
2019-10-26 10:28:02 -05:00
|
|
|
--> $DIR/coherence-cross-crate-conflict.rs:9:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | impl<A> Foo for A {
|
2019-10-12 16:31:23 -05:00
|
|
|
| ^ type parameter `A` must be used as the type parameter for some local type
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-10-17 04:56:54 -05:00
|
|
|
= note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local
|
2018-08-08 07:28:26 -05:00
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
2021-10-21 08:36:35 -05:00
|
|
|
error: aborting due to previous error
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2021-10-21 08:36:35 -05:00
|
|
|
For more information about this error, try `rustc --explain E0210`.
|