11 lines
72 B
Plaintext

struct A {
v: int,
}
fn main() {
let a: A = A { v: 123 };
}