2023-05-05 15:42:51 -05:00
|
|
|
error: generic parameters may not be used in enum discriminant values
|
2020-11-17 04:44:21 -06:00
|
|
|
--> $DIR/issue-67945-1.rs:3:16
|
2020-05-06 12:14:05 -05:00
|
|
|
|
|
|
|
|
LL | let x: S = 0;
|
2020-11-17 04:44:21 -06:00
|
|
|
| ^ cannot perform const operation using `S`
|
|
|
|
|
|
2023-05-05 15:42:51 -05:00
|
|
|
= note: type parameters may not be used in enum discriminant values
|
2020-11-17 04:44:21 -06:00
|
|
|
|
|
|
|
error[E0392]: parameter `S` is never used
|
|
|
|
--> $DIR/issue-67945-1.rs:1:10
|
|
|
|
|
|
|
|
|
LL | enum Bug<S> {
|
|
|
|
| ^ unused parameter
|
2020-05-06 12:14:05 -05:00
|
|
|
|
|
2020-11-17 04:44:21 -06:00
|
|
|
= help: consider removing `S`, referring to it in a field, or using a marker such as `PhantomData`
|
2021-04-30 23:39:50 -05:00
|
|
|
= help: if you intended `S` to be a const parameter, use `const S: usize` instead
|
2020-05-06 12:14:05 -05:00
|
|
|
|
2020-11-17 04:44:21 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2020-05-06 12:14:05 -05:00
|
|
|
|
2020-11-17 04:44:21 -06:00
|
|
|
For more information about this error, try `rustc --explain E0392`.
|