Closed
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`