2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the size for values of type `Y` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:9:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: Y;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `Y`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where Y: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:7:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let _: (isize, (X, isize));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `Z` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:11:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: (isize, (Z, usize));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `Z`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where Z: std::marker::Sized` bound
|
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:15:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: X;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `Y` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:17:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: (isize, (Y, isize));
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `Y`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where Y: std::marker::Sized` bound
|
|
|
|
= note: only the last element of a tuple may have a dynamically sized type
|
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:22:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: X = *x1;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:24:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y = *x2;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:26:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let (y, z) = (*x3, 4);
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:30:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: X = *x1;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:32:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let y = *x2;
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:34:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let (y, z) = (*x3, 4);
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:38:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn g1<X: ?Sized>(x: X) {}
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized6.rs:40:22
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn g2<X: ?Sized + T>(x: X) {}
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `X`
|
2019-01-01 11:53:07 -06:00
|
|
|
= note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
|
2018-08-08 07:28:26 -05:00
|
|
|
= help: consider adding a `where X: std::marker::Sized` bound
|
|
|
|
= note: all local variables must have a statically known size
|
2018-05-28 10:11:34 -05:00
|
|
|
= help: unsized locals are gated as an unstable feature
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|