mirror of
https://github.com/circify/circ.git
synced 2026-04-21 03:00:54 -04:00
10 lines
173 B
Plaintext
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;
|
|
}
|