2020-11-07 05:37:28 -06:00
|
|
|
error: unconstrained generic constant
|
|
|
|
--> $DIR/different-fn.rs:10:9
|
|
|
|
|
|
|
|
|
LL | [0; size_of::<Foo<T>>()]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-02-03 23:41:18 -06:00
|
|
|
help: try adding a `where` bound using this expression: `where [u8; size_of::<Foo<T>>()]: Sized`
|
2020-11-07 05:37:28 -06:00
|
|
|
--> $DIR/different-fn.rs:10:9
|
|
|
|
|
|
|
|
|
LL | [0; size_of::<Foo<T>>()]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|