rust/tests/ui/enum/issue-67945-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
746 B
Plaintext
Raw Normal View History

2023-05-05 20:42:51 +00:00
error: generic parameters may not be used in enum discriminant values
--> $DIR/issue-67945-2.rs:4:28
2020-05-06 17:14:05 +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
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> {
| ^ 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`
= 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`.