2017-12-10 19:47:55 +00:00
|
|
|
error[E0252]: the name `Arc` is defined multiple times
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-26886.rs:2:5
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | use std::sync::{self, Arc};
|
2017-12-10 19:47:55 +00:00
|
|
|
| --- previous import of the type `Arc` here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | use std::sync::Arc;
|
2019-03-11 03:05:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^ `Arc` reimported here
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
|
= note: `Arc` must be defined only once in the type namespace of this module
|
|
|
|
|
|
|
|
error[E0252]: the name `sync` is defined multiple times
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-26886.rs:4:5
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | use std::sync::{self, Arc};
|
2017-12-10 19:47:55 +00:00
|
|
|
| ---- previous import of the module `sync` here
|
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | use std::sync;
|
2019-03-11 03:05:01 +00:00
|
|
|
| ^^^^^^^^^ `sync` reimported here
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
|
= note: `sync` must be defined only once in the type namespace of this module
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0252`.
|