2019-09-18 15:14:33 -05:00
|
|
|
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
|
2019-10-12 16:31:23 -05:00
|
|
|
--> $DIR/impl[t]-foreign[t]-for-fundamental.rs:12:6
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
|
LL | impl<T> Remote1<T> for Box<T> {
|
2019-10-12 16:31:23 -05:00
|
|
|
| ^ type parameter `T` must be used as the type parameter for some local type
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
|
|
|
error[E0210]: type parameter `B` must be used as the type parameter for some local type (e.g., `MyStruct<B>`)
|
2019-10-12 16:31:23 -05:00
|
|
|
--> $DIR/impl[t]-foreign[t]-for-fundamental.rs:16:13
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
|
LL | impl<'a, A, B> Remote1<A> for &'a B {
|
2019-10-12 16:31:23 -05:00
|
|
|
| ^ type parameter `B` must be used as the type parameter for some local type
|
2019-09-18 15:14:33 -05:00
|
|
|
|
|
|
|
|
= note: only traits defined in the current crate can be implemented for a type parameter
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0210`.
|