]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/issues/issue-73491.min.stderr
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / const-generics / issues / issue-73491.min.stderr
1 error: `[u32; _]` is forbidden as the type of a const generic parameter
2   --> $DIR/issue-73491.rs:8:19
3    |
4 LL | fn hoge<const IN: [u32; LEN]>() {}
5    |                   ^^^^^^^^^^
6    |
7    = note: the only supported types are integers, `bool` and `char`
8    = help: more complex types are supported with `#![feature(const_generics)]`
9
10 error: aborting due to previous error
11