]> git.proxmox.com Git - rustc.git/blame - src/test/ui/coherence/impl[t]-foreign[t]-for-fundamental.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / impl[t]-foreign[t]-for-fundamental.stderr
CommitLineData
e74abb32 1error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
60c5eb7d 2 --> $DIR/impl[t]-foreign[t]-for-fundamental.rs:10:6
e74abb32
XL
3 |
4LL | impl<T> Remote1<T> for Box<T> {
5 | ^ type parameter `T` must be used as the type parameter for some local type
6 |
60c5eb7d 7 = note: implementing a foreign trait is only possible if at least one of the types for which is it implemented is local
e74abb32
XL
8 = note: only traits defined in the current crate can be implemented for a type parameter
9
10error[E0210]: type parameter `B` must be used as the type parameter for some local type (e.g., `MyStruct<B>`)
60c5eb7d 11 --> $DIR/impl[t]-foreign[t]-for-fundamental.rs:14:13
e74abb32
XL
12 |
13LL | 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 |
60c5eb7d 16 = note: implementing a foreign trait is only possible if at least one of the types for which is it implemented is local
e74abb32
XL
17 = note: only traits defined in the current crate can be implemented for a type parameter
18
19error: aborting due to 2 previous errors
20
21For more information about this error, try `rustc --explain E0210`.