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
Auto merge of #125610 - oli-obk:define_opaque_types14, r=compiler-errors
Allow constraining opaque types during various unsizing casts
allows unsizing of tuples, arrays and Adts to constraint opaque types in their generic parameters to concrete types on either side of the unsizing cast.
Also allows constraining opaque types during trait object casts that only differ in auto traits or lifetimes.
cc #116652
error: cannot check whether the hidden type of opaque type satisfies auto traits
2
+
--> $DIR/unsized_coercion3.rs:15:32
3
+
|
4
+
LL | let y: Box<dyn Send> = x;
5
+
| ^
6
+
|
7
+
= note: fetching the hidden types of an opaque inside of the defining scope is not supported. You can try moving the opaque type and the item that actually registers a hidden type into a new submodule
8
+
note: opaque type is declared here
9
+
--> $DIR/unsized_coercion3.rs:11:19
10
+
|
11
+
LL | fn hello() -> Box<impl Trait + ?Sized> {
12
+
| ^^^^^^^^^^^^^^^^^^^
13
+
= note: required for the cast from `Box<impl Trait + ?Sized>` to `Box<dyn Send>`
14
+
15
+
error[E0277]: the size for values of type `impl Trait + ?Sized` cannot be known at compilation time
16
+
--> $DIR/unsized_coercion3.rs:15:32
17
+
|
18
+
LL | let y: Box<dyn Send> = x;
19
+
| ^ doesn't have a size known at compile-time
20
+
|
21
+
= help: the trait `Sized` is not implemented for `impl Trait + ?Sized`
22
+
= note: required for the cast from `Box<impl Trait + ?Sized>` to `Box<dyn Send>`
23
+
24
+
error: aborting due to 2 previous errors
25
+
26
+
For more information about this error, try `rustc --explain E0277`.
0 commit comments