2023-05-05 20:42:51 +00:00
|
|
|
error: generic parameters may not be used in enum discriminant values
|
2022-11-19 21:11:00 +00:00
|
|
|
--> $DIR/issue-67945-2.rs:4:28
|
2020-05-06 17:14:05 +00:00
|
|
|
|
|
2022-11-19 21:11:00 +00:00
|
|
|
LL | Var = type_ascribe!(0, S),
|
|
|
|
| ^ cannot perform const operation using `S`
|
2020-05-06 17:14:05 +00:00
|
|
|
|
|
2023-05-05 20:42:51 +00:00
|
|
|
= note: type parameters may not be used in enum discriminant values
|
2020-05-06 17:14:05 +00:00
|
|
|
|
2024-02-01 14:58:07 +00:00
|
|
|
error[E0392]: type parameter `S` is never used
|
2020-11-17 10:44:21 +00:00
|
|
|
--> $DIR/issue-67945-2.rs:3:10
|
2020-05-06 17:14:05 +00:00
|
|
|
|
|
|
|
|
LL | enum Bug<S> {
|
2024-02-01 14:58:07 +00:00
|
|
|
| ^ unused type parameter
|
2020-05-06 17:14:05 +00:00
|
|
|
|
|
2020-11-17 10:44:21 +00:00
|
|
|
= help: consider removing `S`, referring to it in a field, or using a marker such as `PhantomData`
|
2024-02-01 14:58:07 +00:00
|
|
|
= help: if you intended `S` to be a const parameter, use `const S: /* Type */` instead
|
2020-05-06 17:14:05 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2020-11-17 10:44:21 +00:00
|
|
|
For more information about this error, try `rustc --explain E0392`.
|