reid-llvm/examples/a.reid
2025-07-31 23:25:46 +03:00

10 lines
149 B
Plaintext

struct Foo {
a: i32,
b: i32,
}
fn main() -> i32 {
// ISSUE: The debugger says b is 1
let foos = [Foo { a: 1, b: 2}];
return 0;
}