mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
239 B
Rust
16 lines
239 B
Rust
// 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);
|
|
}
|