2018-11-27 02:59:49 +00:00
|
|
|
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
|
2019-10-26 15:28:02 +00:00
|
|
|
--> $DIR/coherence-all-remote.rs:6:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl<T> Remote1<T> for isize { }
|
2019-10-12 21:31:23 +00:00
|
|
|
| ^ type parameter `T` must be used as the type parameter for some local type
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-10-17 09:56:54 +00: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 12:28:26 +00:00
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0210`.
|