2017-12-10 14:29:24 -06:00
|
|
|
use std::sync::{self, Arc};
|
2017-05-17 22:29:58 -05: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 05:16:13 -05:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|