]> git.proxmox.com Git - rustc.git/blobdiff - tests/ui/pattern/usefulness/issue-3601.stderr
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / ui / pattern / usefulness / issue-3601.stderr
index 59d7bcd4b5e799d443b90374b7b18d6b2eef5d10..2f6b167d4f8bd53ec3fdb1810eafd10acd6d9d86 100644 (file)
@@ -9,7 +9,7 @@ note: `Box<ElementKind>` defined here
    = note: the matched value is of type `Box<ElementKind>`
 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 }
+LL ~             box ElementKind::HTMLImageElement(ref d) if d.image.is_some() => { true },
 LL +             box _ => todo!()
    |