mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
35 lines
631 B
Rust
35 lines
631 B
Rust
//@ run-rustfix
|
|
use std::vec;
|
|
|
|
use std::sync::atomic::AtomicBool;
|
|
|
|
mod foo {
|
|
pub mod bar {
|
|
pub mod baz {
|
|
pub use std::vec::Vec as MyVec;
|
|
}
|
|
}
|
|
}
|
|
|
|
mod u {
|
|
use foo::bar::baz::MyVec;
|
|
|
|
fn _a() {
|
|
let _: Vec<i32> = MyVec::new(); //~ ERROR failed to resolve
|
|
}
|
|
}
|
|
|
|
mod v {
|
|
use foo::bar::baz::MyVec;
|
|
|
|
fn _b() {
|
|
let _: Vec<i32> = MyVec::new(); //~ ERROR failed to resolve
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let _t: Vec<i32> = Vec::new(); //~ ERROR failed to resolve
|
|
type _B = vec::Vec::<u8>; //~ ERROR failed to resolve
|
|
let _t = AtomicBool::new(true); //~ ERROR failed to resolve
|
|
}
|