rust/tests/ui/resolve/unused-qualifications-suggestion.fixed
2024-02-16 20:02:50 +00:00

24 lines
307 B
Rust

//@ run-rustfix
#![deny(unused_qualifications)]
mod foo {
pub fn bar() {}
}
mod baz {
pub mod qux {
pub fn quux() {}
}
}
fn main() {
use foo::bar;
bar();
//~^ ERROR unnecessary qualification
use baz::qux::quux;
quux();
//~^ ERROR unnecessary qualification
}