-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lints
Description
From: src/test/compile-fail/E0408.rs
E0408 needs a span_label, updating it from:
error[E0408]: variable `y` from pattern #1 is not bound in pattern #2
--> src/test/compile-fail/E0408.rs:15:19
|
15 | Some(y) | None => {} //~ ERROR E0408
| ^^^^
To:
error[E0408]: variable `y` from pattern #1 is not bound in pattern #2
--> src/test/compile-fail/E0408.rs:15:19
|
15 | Some(y) | None => {} //~ ERROR E0408
| ^^^^ pattern doesn't bind `y`
Metadata
Metadata
Assignees
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lints