blob: 8c97af263b287f98e4bac301370513fcd0a643cd (
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(const_generics)]` and `#![feature(const_evaluatable_checked)]` to allow generic const expressions
error: aborting due to previous error
|