summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/issues/issue-80062.stderr
blob: 754f18d5cc4200820d213209ad3e067f26e11305 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: generic parameters may not be used in const operations
  --> $DIR/issue-80062.rs:6:23
   |
LL |     let _: [u8; sof::<T>()];
   |                       ^ cannot perform const operation using `T`
   |
   = note: type 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