12 lines
135 B
Text
12 lines
135 B
Text
const u32 SIZE = 42;
|
|
|
|
struct Foo {
|
|
field[SIZE] foo;
|
|
}
|
|
|
|
def main() {
|
|
Foo f = Foo {
|
|
foo: [42; SIZE]
|
|
};
|
|
return;
|
|
}
|