]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-orphan.re.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / coherence / coherence-orphan.re.stderr
1 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
2   --> $DIR/coherence-orphan.rs:13:1
3    |
4 LL | impl TheTrait<usize> for isize { }
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
6    |
7    = note: the impl does not reference only types defined in this crate
8    = note: define and implement a trait or new type instead
9
10 error[E0117]: only traits defined in the current crate can be implemented for arbitrary types
11   --> $DIR/coherence-orphan.rs:21:1
12    |
13 LL | impl !Send for Vec<isize> { }
14    | ^^^^^^^^^^^^^^^^^^^^^^^^^ impl doesn't use types inside crate
15    |
16    = note: the impl does not reference only types defined in this crate
17    = note: define and implement a trait or new type instead
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0117`.