blob: 3d6c27bcda145cbed9ea05cbc334eab08824318a [file] [log] [blame]
// run-pass
// Functions can return unnameable types
mod m1 {
mod m2 {
#[derive(Debug)]
pub struct A;
}
use self::m2::A;
pub fn x() -> A { A }
}
fn main() {
let x = m1::x();
println!("{:?}", x);
}