rust/src/test/ui/lint/use-redundant.rs

19 lines
253 B
Rust
Raw Normal View History

// compile-pass
2019-03-17 05:38:38 -05:00
#![warn(unused_imports)]
use crate::foo::Bar; //~ WARNING first import
mod foo {
pub type Bar = i32;
}
fn baz() -> Bar {
3
}
fn main() {
use crate::foo::Bar; //~ WARNING redundant import
let _a: Bar = 3;
baz();
}