rust/tests/ui/lint/use-redundant/issue-92904.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
253 B
Rust
Raw Normal View History

// check-pass
pub struct Foo(bar::Bar);
pub mod bar {
pub struct Foo(pub Bar);
pub struct Bar(pub char);
}
pub fn warning() -> Foo {
use bar::*;
#[deny(unused_imports)]
use self::Foo; // no error
Foo(Bar('a'))
}
fn main() {}