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

10 lines
173 B
Plaintext

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