Closed
Description
Consider the following program p.rs
:
#[path="q.rs"] mod q {
pub fn q_main() { println!("Hello World"); }
}
fn main() { q::q_main() }
I don't know if this is considered a bug or a feature, but we should probably emit a warning when we encounter that useless path
attribute attached to q
above.