summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/const-argument-non-static-lifetime.min.stderr
blob: a1254672c9dc9ae60036a1dbcdc70e7b9e4375f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
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: add `#![feature(generic_const_exprs)]` to allow generic const expressions

error: aborting due to 1 previous error