2023-05-05 15:42:51 -05:00
|
|
|
error: generic parameters may not be used in const operations
|
2022-02-04 22:56:32 -06:00
|
|
|
--> $DIR/outer-lifetime-in-const-generic-default.rs:4:17
|
|
|
|
|
|
|
|
|
LL | let x: &'a ();
|
2023-05-05 15:42:51 -05:00
|
|
|
| ^^ cannot perform const operation using `'a`
|
2022-02-04 22:56:32 -06:00
|
|
|
|
|
2023-05-05 15:42:51 -05:00
|
|
|
= note: lifetime parameters may not be used in const expressions
|
|
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
2022-02-04 22:56:32 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|