]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/issues/issue-74101.min.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / const-generics / issues / issue-74101.min.stderr
1 error: `[u8; _]` is forbidden as the type of a const generic parameter
2   --> $DIR/issue-74101.rs:6:18
3    |
4 LL | fn test<const N: [u8; 1 + 2]>() {}
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: `[u8; _]` is forbidden as the type of a const generic parameter
11   --> $DIR/issue-74101.rs:9:21
12    |
13 LL | struct Foo<const N: [u8; 1 + 2]>;
14    |                     ^^^^^^^^^^^
15    |
16    = note: the only supported types are integers, `bool` and `char`
17    = help: more complex types are supported with `#![feature(adt_const_params)]`
18
19 error: aborting due to 2 previous errors
20