2017-12-10 23:29:24 +03:00
|
|
|
use std::sync::{self, Arc};
|
2017-05-17 20:29:58 -07:00
|
|
|
use std::sync::Arc; //~ ERROR the name `Arc` is defined multiple times
|
|
|
|
//~| `Arc` must be defined only once in the type namespace of this module
|
|
|
|
use std::sync; //~ ERROR the name `sync` is defined multiple times
|
|
|
|
//~| `sync` must be defined only once in the type namespace of this module
|
2015-10-24 15:46:13 +05:30
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|