rust/tests/ui/structs-enums/auxiliary/xcrate_struct_aliases.rs

7 lines
71 B
Rust

pub struct S {
pub x: isize,
pub y: isize,
}
pub type S2 = S;