rust/tests/ui/enum-discriminant/forbidden-discriminant-kind-impl.stderr

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

10 lines
365 B
Plaintext
Raw Normal View History

2020-04-05 20:20:38 +00:00
error[E0322]: explicit impls for the `DiscriminantKind` trait are not permitted
--> $DIR/forbidden-discriminant-kind-impl.rs:9:1
|
LL | impl DiscriminantKind for NewType {
2022-06-01 18:36:20 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl of `DiscriminantKind` not allowed
2020-04-05 20:20:38 +00:00
error: aborting due to 1 previous error
2020-04-05 20:20:38 +00:00
For more information about this error, try `rustc --explain E0322`.