mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-09 10:08:17 +00:00
20 lines
282 B
Rust
20 lines
282 B
Rust
// check-pass
|
|
|
|
pub mod bar {
|
|
pub struct Foo(pub Bar);
|
|
pub struct Bar(pub char);
|
|
}
|
|
|
|
pub mod x {
|
|
pub struct Foo(pub crate::bar::Bar);
|
|
}
|
|
|
|
pub fn warning() -> x::Foo {
|
|
use bar::*;
|
|
#[deny(unused_imports)]
|
|
use x::Foo; // no error
|
|
Foo(Bar('a'))
|
|
}
|
|
|
|
fn main() {}
|