2018-11-26 20:59:49 -06:00
|
|
|
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
|
2019-10-26 10:28:02 -05:00
|
|
|
--> $DIR/coherence-all-remote.rs:6:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | impl<T> Remote1<T> for isize { }
|
2019-10-12 16:31:23 -05:00
|
|
|
| ^ type parameter `T` 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
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0210`.
|