12 lines
443 B
Plaintext
12 lines
443 B
Plaintext
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
|
|
|