mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
16 lines
249 B
Rust
16 lines
249 B
Rust
//@ check-pass
|
|
#![warn(unused_imports)]
|
|
|
|
pub mod bar {
|
|
pub struct Foo(pub Bar);
|
|
pub struct Bar(pub char);
|
|
}
|
|
|
|
pub fn warning() -> bar::Foo {
|
|
use bar::*;
|
|
use bar::Foo; //~ WARNING imported redundantly
|
|
Foo(Bar('a'))
|
|
}
|
|
|
|
fn main() {}
|