1 2 3 4 5 6 7 8 9
mod foo { struct Bar(u32); pub fn bar() -> Bar { //~ ERROR E0446 Bar(0) } } fn main() {}