2018-08-08 14:28:26 +02:00
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/unsized-enum.rs:6:36
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | fn foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
2020-02-02 02:03:54 -08:00
|
|
|
| - ^^^^^^ doesn't have a size known at compile-time
|
2019-10-07 14:23:56 -07:00
|
|
|
| |
|
2023-06-14 19:22:03 +02:00
|
|
|
| this type parameter needs to be `Sized`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `Foo`
|
|
|
|
--> $DIR/unsized-enum.rs:4:10
|
|
|
|
|
|
|
|
|
LL | enum Foo<U> { FooSome(U), FooNone }
|
|
|
|
| ^ required by this bound in `Foo`
|
2020-06-16 17:24:16 -07:00
|
|
|
help: you could relax the implicit `Sized` bound on `U` if it were used through indirection like `&U` or `Box<U>`
|
|
|
|
--> $DIR/unsized-enum.rs:4:10
|
|
|
|
|
|
|
|
|
LL | enum Foo<U> { FooSome(U), FooNone }
|
2021-02-03 21:41:18 -08:00
|
|
|
| ^ - ...if indirection were used here: `Box<U>`
|
2020-06-16 17:24:16 -07:00
|
|
|
| |
|
|
|
|
| this could be changed to `U: ?Sized`...
|
2021-07-23 18:47:53 -07:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
2021-06-21 19:07:19 -07:00
|
|
|
LL - fn foo2<T: ?Sized>() { not_sized::<Foo<T>>() }
|
|
|
|
LL + fn foo2<T>() { not_sized::<Foo<T>>() }
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|