mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-15 07:13:10 +00:00
12 lines
414 B
Plaintext
12 lines
414 B
Plaintext
error: generic parameters may not be used in const operations
|
|
--> $DIR/const-argument-non-static-lifetime.rs:14:17
|
|
|
|
|
LL | let _: &'a ();
|
|
| ^^ cannot perform const operation using `'a`
|
|
|
|
|
= note: lifetime parameters may not be used in const expressions
|
|
= help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
|
|
|
|
error: aborting due to previous error
|
|
|