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
363 B
Plaintext
Raw Normal View History

2020-04-05 15:20:38 -05: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 13:36:20 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl of `DiscriminantKind` not allowed
2020-04-05 15:20:38 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0322`.