mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
10 lines
375 B
Text
10 lines
375 B
Text
error: generic parameters may not be used in enum discriminant values
|
|
--> $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 enum discriminant values
|
|
|
|
error: aborting due to 1 previous error
|
|
|