summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/outer-lifetime-in-const-generic-default.stderr
blob: 6b0d18f1989aa5182c5891b33651471766dabba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: generic parameters may not be used in const operations
  --> $DIR/outer-lifetime-in-const-generic-default.rs:4:17
   |
LL |         let x: &'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