rust/tests/ui/lint/use-redundant/use-redundant-glob-parent.rs

17 lines
264 B
Rust

//@ check-pass
#![warn(unused_imports)]
pub mod bar {
pub struct Foo(pub Bar);
pub struct Bar(pub char);
}
use bar::*;
pub fn warning() -> Foo {
use bar::Foo; //FIXME(unused_imports): ~ WARNING imported redundantly
Foo(Bar('a'))
}
fn main() {}