about summary refs log tree commit diff
path: root/tests/ui/const-generics/repeat_expr_hack_gives_right_generics.stderr
blob: fe32fbcc87d57bad26c223aae2d22a48297f0cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: generic parameters may not be used in const operations
  --> $DIR/repeat_expr_hack_gives_right_generics.rs:20:17
   |
LL |     bar::<{ [1; N] }>();
   |                 ^ cannot perform const operation using `N`
   |
   = help: const parameters may only be used as standalone arguments here, i.e. `N`
   = help: add `#![feature(generic_const_exprs)]` to allow generic const expressions

error: generic parameters may not be used in const operations
  --> $DIR/repeat_expr_hack_gives_right_generics.rs:22:19
   |
LL |     bar::<{ [1; { N + 1 }] }>();
   |                   ^ cannot perform const operation using `N`
   |
   = help: const parameters may only be used as standalone arguments here, i.e. `N`
   = help: add `#![feature(generic_const_exprs)]` to allow generic const expressions

error: aborting due to 2 previous errors