]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const_evaluatable_checked/simple.min.stderr
Merge commit '15c8d31392b9fbab3b3368b67acc4bbe5983115a' into cranelift-rebase
[rust.git] / src / test / ui / const-generics / const_evaluatable_checked / simple.min.stderr
1 error: generic parameters may not be used in const operations
2   --> $DIR/simple.rs:7:53
3    |
4 LL | fn test<const N: usize>() -> [u8; N - 1] where [u8; N - 1]: Default {
5    |                                                     ^ cannot perform const operation using `N`
6    |
7    = help: const parameters may only be used as standalone arguments, i.e. `N`
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/simple.rs:7:35
12    |
13 LL | fn test<const N: usize>() -> [u8; N - 1] where [u8; N - 1]: Default {
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