Files
rust/tests/ui/pattern/usefulness/issue-3601.stderr

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

20 lines
916 B
Plaintext
Raw Normal View History

2023-10-15 17:36:36 +02:00
error[E0004]: non-exhaustive patterns: `box ElementKind::HTMLImageElement(_)` not covered
2023-06-28 01:49:12 -04:00
--> $DIR/issue-3601.rs:30:44
2018-07-15 14:11:54 -07:00
|
2019-03-09 15:03:44 +03:00
LL | box NodeKind::Element(ed) => match ed.kind {
2023-10-15 17:36:36 +02:00
| ^^^^^^^ pattern `box ElementKind::HTMLImageElement(_)` not covered
|
note: `Box<ElementKind>` defined here
--> $SRC_DIR/alloc/src/boxed.rs:LL:COL
= note: the matched value is of type `Box<ElementKind>`
= note: match arms with guards don't count towards exhaustivity
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ box ElementKind::HTMLImageElement(ref d) if d.image.is_some() => true,
2023-10-15 17:36:36 +02:00
LL ~ box ElementKind::HTMLImageElement(_) => todo!(),
|
2018-07-15 14:11:54 -07:00
error: aborting due to 1 previous error
2018-07-15 14:11:54 -07:00
For more information about this error, try `rustc --explain E0004`.