You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of #114200 - compiler-errors:detect-tail-unsize-then-upcast, r=lcnr
Detect trait upcasting through struct tail unsizing in new solver select
Oops, we were able to hide trait upcasting behind a parent unsize goal that evaluated to `Certainty::Yes`. Let's do rematching for `Certainty::Yes` unsize goals with `BuiltinImplSource::Misc` sources (corresponding to all of the other unsize rules) to make sure we end up selecting any nested goals which may be satisfied via `BuiltinImplSource::TraitUpcasting` or `::TupleUnsizing`.
r? ``@lcnr``
error[E0658]: cannot cast `dyn A` to `dyn B`, trait upcasting coercion is experimental
2
+
--> $DIR/upcast-through-struct-tail.rs:10:5
3
+
|
4
+
LL | x
5
+
| ^
6
+
|
7
+
= note: see issue #65991 <https://github.com/rust-lang/rust/issues/65991> for more information
8
+
= help: add `#![feature(trait_upcasting)]` to the crate attributes to enable
9
+
= note: required when coercing `Box<Wrapper<(dyn A + 'a)>>` into `Box<Wrapper<(dyn B + 'a)>>`
10
+
11
+
error: aborting due to previous error
12
+
13
+
For more information about this error, try `rustc --explain E0658`.
error[E0658]: cannot cast `dyn A` to `dyn B`, trait upcasting coercion is experimental
2
+
--> $DIR/upcast-through-struct-tail.rs:10:5
3
+
|
4
+
LL | x
5
+
| ^
6
+
|
7
+
= note: see issue #65991 <https://github.com/rust-lang/rust/issues/65991> for more information
8
+
= help: add `#![feature(trait_upcasting)]` to the crate attributes to enable
9
+
= note: required when coercing `Box<Wrapper<(dyn A + 'a)>>` into `Box<Wrapper<(dyn B + 'a)>>`
10
+
11
+
error: aborting due to previous error
12
+
13
+
For more information about this error, try `rustc --explain E0658`.
0 commit comments