mod test { pub struct S { a: i32, b: i32 } } fn main() { let v = test::S{a: 1, b: 2}; println!("{} {}", v.a, v.b) }