rust/tests/ui/const-generics/outer-lifetime-in-const-generic-default.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
420 B
Plaintext
Raw Normal View History

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