This gives no warnings: ``` rust mod a { pub fn foo() {} } fn main() { use a::foo; // Should trigger unused_imports a::foo(); } ```