]> git.proxmox.com Git - rustc.git/blame - tests/ui/coherence/coherence-orphan.stderr
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / coherence / coherence-orphan.stderr
CommitLineData
04454e1e 1error[E0117]: only traits defined in the current crate can be implemented for primitive types
3c0e092e 2 --> $DIR/coherence-orphan.rs:10:1
b7449926 3 |
3c0e092e
XL
4LL | 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
e74abb32 9 | impl doesn't use only types from inside the current crate
b7449926 10 |
b7449926
XL
11 = note: define and implement a trait or new type instead
12
04454e1e 13error[E0117]: only traits defined in the current crate can be implemented for types defined outside of the crate
a2a8927a
XL
14 --> $DIR/coherence-orphan.rs:17:1
15 |
16LL | impl !Send for Vec<isize> { }
17 | ^^^^^^^^^^^^^^^----------
18 | | |
19 | | `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
353b0b11
FG
24warning: cross-crate traits with a default impl, like `Send`, should not be specialized
25 --> $DIR/coherence-orphan.rs:17:1
26 |
27LL | impl !Send for Vec<isize> { }
28 | ^^^^^^^^^^^^^^^^^^^^^^^^^
29 |
30 = warning: this will change its meaning in a future release!
31 = note: for more information, see issue #93367 <https://github.com/rust-lang/rust/issues/93367>
32 = note: `isize` is not a generic parameter
33note: try using the same sequence of generic parameters as the struct definition
34 --> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL
35 = note: `#[warn(suspicious_auto_trait_impls)]` on by default
36
37error: aborting due to 2 previous errors; 1 warning emitted
b7449926
XL
38
39For more information about this error, try `rustc --explain E0117`.