
* add breaking test * implement from constant for uint * tweak * tweak * revert and add breaking test * implement from
11 lines
No EOL
128 B
Text
11 lines
No EOL
128 B
Text
const u32 SIZE = 42
|
|
|
|
struct Foo {
|
|
field[SIZE] foo
|
|
}
|
|
|
|
def main():
|
|
Foo f = Foo {
|
|
foo: [42; SIZE]
|
|
}
|
|
return |