]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-impls-send.old.stderr
ca45c28ec2d7484393b95d6efedaa96474007c57
[rust.git] / src / test / ui / coherence / coherence-impls-send.old.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2   --> $DIR/coherence-impls-send.rs:20:1
3    |
4 LL | unsafe impl Send for (MyType, MyType) {}
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
6    |
7    = note: the impl does not reference any types defined in this crate
8    = note: define and implement a trait or new type instead
9
10 error[E0321]: cross-crate traits with a default impl, like `std::marker::Send`, can only be implemented for a struct/enum type, not `&'static NotSync`
11   --> $DIR/coherence-impls-send.rs:24:1
12    |
13 LL | unsafe impl Send for &'static NotSync {}
14    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't implement cross-crate trait with a default impl for non-struct/enum type
15
16 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
17   --> $DIR/coherence-impls-send.rs:28:1
18    |
19 LL | unsafe impl Send for [MyType] {}
20    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
21    |
22    = note: the impl does not reference any types defined in this crate
23    = note: define and implement a trait or new type instead
24
25 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
26   --> $DIR/coherence-impls-send.rs:32:1
27    |
28 LL | unsafe impl Send for &'static [NotSync] {}
29    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
30    |
31    = note: the impl does not reference any types defined in this crate
32    = note: define and implement a trait or new type instead
33
34 error: aborting due to 4 previous errors
35
36 Some errors occurred: E0117, E0321.
37 For more information about an error, try `rustc --explain E0117`.