1
Fork 0
rust/tests/ui/const-generics/generic_const_exprs/needs_where_clause.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
395 B
Text
Raw Normal View History

error: unconstrained generic constant
--> $DIR/needs_where_clause.rs:11:6
|
LL | b: [f32; complex_maths::<T>(N)],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: try adding a `where` bound
|
LL | struct Example<T, const N: usize> where [(); complex_maths::<T>(N)]: {
| ++++++++++++++++++++++++++++++++++
error: aborting due to 1 previous error