1error: generic parameters may not be used in const operations
2  --> $DIR/issue-72819-generic-in-const-eval.rs:8:17
3   |
4LL | where Assert::<{N < usize::MAX / 2}>: IsTrue,
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(generic_const_exprs)]` to allow generic const expressions
9
10error: aborting due to previous error
11
12