]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/issues/issue-76701-ty-param-in-const.min.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-76701-ty-param-in-const.min.stderr
1 error: generic parameters may not be used in const operations
2 --> $DIR/issue-76701-ty-param-in-const.rs:5: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(const_generics)]` and `#![feature(const_evaluatable_checked)]` 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:11: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(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
18
19 error: aborting due to 2 previous errors
20