blob: f61c7e546166221a08cbf91f62fe759eee706882 [file] [log] [blame]
mod foo {
struct Bar(u32);
pub fn bar() -> Bar { //~ ERROR E0446
Bar(0)
}
}
fn main() {}