summary refs log tree commit diff
path: root/src/test/ui/const-generics/generic_const_exprs/let-bindings.stderr
blob: 5749defb3e12c679227424fb7eef06d8bf66ad61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: overly complex generic constant
  --> $DIR/let-bindings.rs:6:68
   |
LL | fn test<const N: usize>() -> [u8; { let x = N; N + 1 }] where [u8; { let x = N; N + 1 }]: Default {
   |                                                                    ^^^^^^-^^^^^^^^^^^^^
   |                                                                          |
   |                                                                          unsupported statement
   |
   = help: consider moving this anonymous constant into a `const` function

error: overly complex generic constant
  --> $DIR/let-bindings.rs:6:35
   |
LL | fn test<const N: usize>() -> [u8; { let x = N; N + 1 }] where [u8; { let x = N; N + 1 }]: Default {
   |                                   ^^^^^^-^^^^^^^^^^^^^
   |                                         |
   |                                         unsupported statement
   |
   = help: consider moving this anonymous constant into a `const` function

error: aborting due to 2 previous errors