]> git.proxmox.com Git - rustc.git/blob - src/test/ui/coherence/coherence-orphan.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / coherence / coherence-orphan.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2 --> $DIR/coherence-orphan.rs:10:1
3 |
4 LL | impl TheTrait<usize> for isize { }
5 | ^^^^^---------------^^^^^-----
6 | | | |
7 | | | `isize` is not defined in the current crate
8 | | `usize` is not defined in the current crate
9 | impl doesn't use only types from inside the current crate
10 |
11 = note: define and implement a trait or new type instead
12
13 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
14 --> $DIR/coherence-orphan.rs:17:1
15 |
16 LL | impl !Send for Vec<isize> { }
17 | ^^^^^^^^^^^^^^^----------
18 | | |
19 | | `std::vec::Vec` is not defined in the current crate
20 | impl doesn't use only types from inside the current crate
21 |
22 = note: define and implement a trait or new type instead
23
24 error: aborting due to 2 previous errors
25
26 For more information about this error, try `rustc --explain E0117`.