Files
circ/scripts/zcx_tests/inline_struct_generic_2.zxf
2025-02-12 09:07:15 -08:00

10 lines
168 B
Plaintext

struct InlineTest<N> {
u32[N] x;
field y;
}
const InlineTest<4> foo = InlineTest { x: [1, 2, 3, 4, 5], y: 1 };
def main() -> InlineTest<4> {
return foo;
}