summaryrefslogtreecommitdiffstats
path: root/src/test/ui/enum-discriminant/issue-70453-polymorphic-ctfe.stderr
blob: 0a7a631606ee4e14116d8e6d1c172a9e397a84fc (plain)
1
2
3
4
5
6
7
8
9
10
11
error: generic parameters may not be used in const operations
  --> $DIR/issue-70453-polymorphic-ctfe.rs:9:41
   |
LL |     Some(T) = core::mem::size_of::<*mut 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