blob: e4e10468d53488e052c24f6f6141186b7d137cb3 (
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-generics-in-discr-ice-2.rs:9:35
|
LL | Some(T) = std::mem::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
|