]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/issues/issue-75047.min.stderr
Rollup merge of #106779 - RReverser:patch-2, r=Mark-Simulacrum
[rust.git] / tests / ui / const-generics / issues / issue-75047.min.stderr
1 error: `[u8; Bar::<u32>::value()]` is forbidden as the type of a const generic parameter
2   --> $DIR/issue-75047.rs:14:21
3    |
4 LL | struct Foo<const N: [u8; Bar::<u32>::value()]>;
5    |                     ^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: the only supported types are integers, `bool` and `char`
8    = help: more complex types are supported with `#![feature(adt_const_params)]`
9
10 error: aborting due to previous error
11