summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-eval/size-of-t.stderr
blob: abe6410465e44f379deb41666b8ee60e4bf6032f (plain)
1
2
3
4
5
6
7
8
9
10
11
error: generic parameters may not be used in const operations
  --> $DIR/size-of-t.rs:7:30
   |
LL |     let _arr: [u8; size_of::<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