2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the size for values of type `[isize]` cannot be known at compilation time
|
2023-01-12 14:28:57 -06:00
|
|
|
--> $DIR/dst-sized-trait-param.rs:7:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | impl Foo<[isize]> for usize { }
|
2023-01-12 14:28:57 -06:00
|
|
|
| ^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `[isize]`
|
2024-01-24 15:29:15 -06:00
|
|
|
note: required by an implicit `Sized` bound in `Foo`
|
2021-07-31 11:26:55 -05:00
|
|
|
--> $DIR/dst-sized-trait-param.rs:5:11
|
|
|
|
|
|
|
|
|
LL | trait Foo<T> : Sized { fn take(self, x: &T) { } } // Note: T is sized
|
2024-01-30 13:47:45 -06:00
|
|
|
| ^ required by the implicit `Sized` requirement on this type parameter in `Foo`
|
2020-06-12 17:13:43 -05:00
|
|
|
help: consider relaxing the implicit `Sized` restriction
|
|
|
|
|
|
|
|
|
LL | trait Foo<T: ?Sized> : Sized { fn take(self, x: &T) { } } // Note: T is sized
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `[usize]` cannot be known at compilation time
|
2023-01-12 14:15:00 -06:00
|
|
|
--> $DIR/dst-sized-trait-param.rs:10:21
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | impl Foo<isize> for [usize] { }
|
2023-01-12 14:15:00 -06:00
|
|
|
| ^^^^^^^ doesn't have a size known at compile-time
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `[usize]`
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `Foo`
|
|
|
|
--> $DIR/dst-sized-trait-param.rs:5:16
|
|
|
|
|
|
|
|
|
LL | trait Foo<T> : Sized { fn take(self, x: &T) { } } // Note: T is sized
|
|
|
|
| ^^^^^ required by this bound in `Foo`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|