summary refs log tree commit diff
path: root/src/test/ui/const-generics/generic_const_exprs/issue-94287.stderr
blob: c918651ba62d986d603e3df5c19d22e3e74ecc38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: failed to evaluate generic const expression
  --> $DIR/auxiliary/issue-94287-aux.rs:15:8
   |
LL |     If<{ FRAC <= 32 }>: True,
   |        ^^^^^^^^^^^^^^
   |
   = note: the crate this constant originates from uses `#![feature(generic_const_exprs)]`
help: consider enabling this feature
   |
LL | #![feature(generic_const_exprs)]
   |

error: aborting due to previous error