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