2024-05-16 19:29:54 -05:00
|
|
|
error[E0277]: the size for values of type `[[[[[u8]]]]]` cannot be known at compilation time
|
|
|
|
--> $DIR/wf-normalization-sized.rs:19:11
|
2024-03-10 21:25:32 -05:00
|
|
|
|
|
|
|
|
LL | const _: <[[[[[[u8]]]]]] as WellUnformed>::RequestNormalize = ();
|
2024-05-16 19:29:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `[[[[[u8]]]]]`
|
2024-03-10 21:25:32 -05:00
|
|
|
|
2024-05-16 19:29:54 -05:00
|
|
|
error[E0277]: the size for values of type `[[[[[u8]]]]]` cannot be known at compilation time
|
|
|
|
--> $DIR/wf-normalization-sized.rs:19:11
|
2024-03-10 21:25:32 -05:00
|
|
|
|
|
|
|
|
LL | const _: <[[[[[[u8]]]]]] as WellUnformed>::RequestNormalize = ();
|
2024-05-16 19:29:54 -05:00
|
|
|
| ^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2024-03-10 21:25:32 -05:00
|
|
|
|
|
2024-05-16 19:29:54 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `[[[[[u8]]]]]`
|
2024-03-10 21:25:32 -05:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
2024-05-16 19:29:54 -05:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
|
|
--> $DIR/wf-normalization-sized.rs:22:11
|
2024-03-10 21:25:32 -05:00
|
|
|
|
|
|
|
|
LL | const _: <Vec<str> as WellUnformed>::RequestNormalize = ();
|
2024-05-16 19:29:54 -05:00
|
|
|
| ^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2024-03-10 21:25:32 -05:00
|
|
|
|
2024-05-16 19:29:54 -05:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
|
|
|
--> $DIR/wf-normalization-sized.rs:22:11
|
2024-03-10 21:25:32 -05:00
|
|
|
|
|
|
|
|
LL | const _: <Vec<str> as WellUnformed>::RequestNormalize = ();
|
2024-05-16 19:29:54 -05:00
|
|
|
| ^^^^^^^^ doesn't have a size known at compile-time
|
2024-03-10 21:25:32 -05:00
|
|
|
|
|
2024-05-16 19:29:54 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2024-03-10 21:25:32 -05:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2024-05-16 19:29:54 -05:00
|
|
|
For more information about this error, try `rustc --explain E0277`.
|