2023-05-05 15:42:51 -05:00
|
|
|
error: generic parameters may not be used in const operations
|
2022-09-14 20:29:12 -05:00
|
|
|
--> $DIR/const-argument-non-static-lifetime.rs:14:17
|
2022-05-01 10:48:58 -05:00
|
|
|
|
|
|
|
|
LL | let _: &'a ();
|
2023-05-05 15:42:51 -05:00
|
|
|
| ^^ cannot perform const operation using `'a`
|
2022-05-01 10:48:58 -05:00
|
|
|
|
|
2023-05-05 15:42:51 -05:00
|
|
|
= note: lifetime parameters may not be used in const expressions
|
2023-11-30 13:59:51 -06:00
|
|
|
= help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2022-05-01 10:48:58 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-05-01 10:48:58 -05:00
|
|
|
|