blob: 5652ee747060597bec4dea336d00d71103d82f88 [file] [log] [blame]
mod foo {
pub struct B(pub ());
}
mod baz {
fn foo() {
B(());
//~^ ERROR cannot find function, tuple struct or tuple variant `B` in this scope [E0425]
}
}
fn main() {}