2017-11-06 20:40:21 -06:00
|
|
|
error[E0259]: the name `std` is defined multiple times
|
|
|
|
--> $DIR/issue-45799-bad-extern-crate-rename-suggestion-formatting.rs:11:1
|
|
|
|
|
|
|
|
|
11 | extern crate std;
|
2018-01-26 00:40:38 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^ `std` reimported here
|
2017-11-06 20:40:21 -06:00
|
|
|
|
|
|
|
|
= note: `std` must be defined only once in the type namespace of this module
|
|
|
|
help: You can use `as` to change the binding name of the import
|
|
|
|
|
|
2018-01-28 19:48:54 -06:00
|
|
|
11 | extern crate std as other_std;
|
2018-01-26 00:40:38 -06:00
|
|
|
|
|
2017-11-06 20:40:21 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|