]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/issues/issue-76701-ty-param-in-const.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / const-generics / issues / issue-76701-ty-param-in-const.stderr
1 error: generic parameters may not be used in const operations
2   --> $DIR/issue-76701-ty-param-in-const.rs:1:46
3    |
4 LL | fn ty_param<T>() -> [u8; std::mem::size_of::<T>()] {
5    |                                              ^ cannot perform const operation using `T`
6    |
7    = note: type parameters may not be used in const expressions
8    = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
9
10 error: generic parameters may not be used in const operations
11   --> $DIR/issue-76701-ty-param-in-const.rs:6:42
12    |
13 LL | fn const_param<const N: usize>() -> [u8; N + 1] {
14    |                                          ^ cannot perform const operation using `N`
15    |
16    = help: const parameters may only be used as standalone arguments, i.e. `N`
17    = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
18
19 error: aborting due to 2 previous errors
20