-
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/E0259.rs
E0259 needs a span_label, updating it from:
error[E0259]: an extern crate named `collections` has already been imported in this module
--> src/test/compile-fail/E0259.rs:12:1
|
11 | extern crate collections;
| ------------------------- previous import of `collections` here
12 | extern crate libc as collections; //~ ERROR E0259
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
To:
error[E0259]: an extern crate named `collections` has already been imported in this module
--> src/test/compile-fail/E0259.rs:12:1
|
11 | extern crate collections;
| ------------------------- previous import of `collections` here
12 | extern crate libc as collections; //~ ERROR E0259
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ already imported
Metadata
Metadata
Assignees
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lints