mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-30 23:07:29 +00:00
As a temporary measure while a proper fix for `tests/ui/sized-hierarchy/incomplete-inference-issue-143992.rs` is implemented, make `MetaSized` obligations always hold. In effect, temporarily reverting the `sized_hierarchy` feature. This is a small change that can be backported.
16 lines
482 B
Plaintext
16 lines
482 B
Plaintext
error[E0207]: the type parameter `C` is not constrained by the impl trait, self type, or predicates
|
|
--> $DIR/unconstrained-param-ice-137308.rs:13:6
|
|
|
|
|
LL | impl<C: ?Sized> A for u8 {
|
|
| ^ unconstrained type parameter
|
|
|
|
error: the type has an unknown layout
|
|
--> $DIR/unconstrained-param-ice-137308.rs:18:1
|
|
|
|
|
LL | struct S([u8; <u8 as A>::B]);
|
|
| ^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0207`.
|