2021-01-29 21:45:18 -06:00
|
|
|
error: unconstrained generic constant
|
|
|
|
--> $DIR/needs_where_clause.rs:11:6
|
|
|
|
|
|
|
|
|
LL | b: [f32; complex_maths::<T>(N)],
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2021-02-03 23:41:18 -06:00
|
|
|
help: try adding a `where` bound using this expression: `where [u8; complex_maths::<T>(N)]: Sized`
|
2021-01-29 21:45:18 -06:00
|
|
|
--> $DIR/needs_where_clause.rs:11:12
|
|
|
|
|
|
|
|
|
LL | b: [f32; complex_maths::<T>(N)],
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|