]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.stderr
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.git] / src / test / ui / coherence / impl[t]-foreign[t]-for-fundamental.stderr
1 error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
2   --> $DIR/impl[t]-foreign[t]-for-fundamental.rs:10:6
3    |
4 LL | impl<T> Remote1<T> for Box<T> {
5    |      ^ type parameter `T` must be used as the type parameter for some local type
6    |
7    = note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local
8    = note: only traits defined in the current crate can be implemented for a type parameter
9
10 error[E0210]: type parameter `B` must be used as the type parameter for some local type (e.g., `MyStruct<B>`)
11   --> $DIR/impl[t]-foreign[t]-for-fundamental.rs:14:13
12    |
13 LL | impl<'a, A, B> Remote1<A> for &'a B {
14    |             ^ type parameter `B` must be used as the type parameter for some local type
15    |
16    = note: implementing a foreign trait is only possible if at least one of the types for which it is implemented is local
17    = note: only traits defined in the current crate can be implemented for a type parameter
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0210`.