blob: 3bd127ee74a592c401b72f3d9cd30f8e1d931e0c [file] [log] [blame]
error: generic parameters may not be used in const operations
--> $DIR/issue-62220.rs:8:59
|
LL | pub type TruncatedVector<T, const N: usize> = Vector<T, { N - 1 }>;
| ^ cannot perform const operation using `N`
|
= help: const parameters may only be used as standalone arguments, i.e. `N`
error: aborting due to previous error