blob: 935f12dd2c3048e8c8f077653e303619d7fdee1a [file] [log] [blame]
error: generic parameters may not be used in const operations
--> $DIR/wf-misc.rs:9:17
|
LL | let _: [u8; N + 1];
| ^ cannot perform const operation using `N`
|
= help: const parameters may only be used as standalone arguments, i.e. `N`
error: generic parameters may not be used in const operations
--> $DIR/wf-misc.rs:17:21
|
LL | let _: Const::<{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 2 previous errors