-
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/E0267.rs
E0267 needs a span_label, updating it from:
error[E0267]: `break` inside of a closure
--> src/test/compile-fail/E0267.rs:12:18
|
12 | let w = || { break; }; //~ ERROR E0267
| ^^^^^
To:
error[E0267]: `break` inside of a closure
--> src/test/compile-fail/E0267.rs:12:18
|
12 | let w = || { break; }; //~ ERROR E0267
| ^^^^^ cannot break inside of a closure
Metadata
Metadata
Assignees
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lints