Files
rust/tests/ui/traits/next-solver/specialization-transmute.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.8 KiB
Plaintext
Raw Normal View History

2023-03-26 00:02:24 +00:00
warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
2025-02-05 18:32:06 +00:00
--> $DIR/specialization-transmute.rs:2:12
2023-03-26 00:02:24 +00:00
|
LL | #![feature(specialization)]
| ^^^^^^^^^^^^^^
|
= note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
= help: consider using `min_specialization` instead, which is more stable and complete
= note: `#[warn(incomplete_features)]` on by default
error: cannot normalize `<T as Default>::Id: '_`
2025-02-05 18:32:06 +00:00
--> $DIR/specialization-transmute.rs:14:5
|
LL | fn intu(&self) -> &Self::Id {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0282]: type annotations needed
2025-02-05 18:32:06 +00:00
--> $DIR/specialization-transmute.rs:14:23
|
LL | fn intu(&self) -> &Self::Id {
| ^^^^^^^^^ cannot infer type for reference `&<T as Default>::Id`
error[E0284]: type annotations needed: cannot satisfy `<T as Default>::Id normalizes-to T`
2024-04-21 18:41:45 +02:00
--> $DIR/specialization-transmute.rs:17:9
|
LL | self
| ^^^^ cannot satisfy `<T as Default>::Id normalizes-to T`
error[E0284]: type annotations needed: cannot satisfy `<u8 as Default>::Id normalizes-to Option<NonZero<u8>>`
2024-04-21 18:41:45 +02:00
--> $DIR/specialization-transmute.rs:28:13
|
2024-02-22 14:59:52 +01:00
LL | let s = transmute::<u8, Option<NonZero<u8>>>(0);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot satisfy `<u8 as Default>::Id normalizes-to Option<NonZero<u8>>`
|
note: required by a bound in `transmute`
2024-04-21 18:41:45 +02:00
--> $DIR/specialization-transmute.rs:21:25
|
LL | fn transmute<T: Default<Id = U>, U: Copy>(t: T) -> U {
| ^^^^^^ required by this bound in `transmute`
error: aborting due to 4 previous errors; 1 warning emitted
2023-03-26 00:02:24 +00:00
Some errors have detailed explanations: E0282, E0284.
For more information about an error, try `rustc --explain E0282`.