mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
11 lines
378 B
Plaintext
11 lines
378 B
Plaintext
error: generic parameters may not be used in enum discriminant values
|
|
--> $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 enum discriminant values
|
|
|
|
error: aborting due to previous error
|
|
|