2017-12-10 13:47:55 -06:00
|
|
|
error[E0252]: the name `Arc` is defined multiple times
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-26886.rs:12:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use std::sync::{self, Arc};
|
2017-12-10 13:47:55 -06:00
|
|
|
| --- previous import of the type `Arc` here
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use std::sync::Arc; //~ ERROR the name `Arc` is defined multiple times
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^ `Arc` reimported here
|
|
|
|
|
|
|
|
|
= note: `Arc` must be defined only once in the type namespace of this module
|
2018-10-16 18:21:40 -05:00
|
|
|
help: you can use `as` to change the binding name of the import
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | use std::sync::Arc as OtherArc; //~ ERROR the name `Arc` is defined multiple times
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0252]: the name `sync` is defined multiple times
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-26886.rs:14:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use std::sync::{self, Arc};
|
2017-12-10 13:47:55 -06:00
|
|
|
| ---- previous import of the module `sync` here
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | use std::sync; //~ ERROR the name `sync` is defined multiple times
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^ `sync` reimported here
|
|
|
|
|
|
|
|
|
= note: `sync` must be defined only once in the type namespace of this module
|
2018-10-16 18:21:40 -05:00
|
|
|
help: you can use `as` to change the binding name of the import
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-24 17:01:39 -06:00
|
|
|
LL | use std::sync as other_sync; //~ ERROR the name `sync` is defined multiple times
|
2018-01-28 19:48:54 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0252`.
|