Skip to content

Commit

Permalink
Merge pull request #568 from g-r-a-n-t/fix-build
Browse files Browse the repository at this point in the history
fixed build
  • Loading branch information
g-r-a-n-t authored Oct 12, 2021
2 parents b8b0514 + a127446 commit a8c713e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/lowering/tests/snapshots/lowering__module_const.snap
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ struct $tuple_u256_u256_:
item0: u256
item1: u256

fn list_expr_array_u256_2(val0: u256, val1: u256) -> u256[2]:
let generated_array: u256[2]
generated_array[0] = val0
generated_array[1] = val1
return generated_array

struct Bar:
val: u256

Expand Down Expand Up @@ -41,9 +47,3 @@ contract Foo:


return self.table[3]

fn list_expr_array_u256_2(val0: u256, val1: u256) -> u256[2]:
let generated_array: u256[2]
generated_array[0] = val0
generated_array[1] = val1
return generated_array

0 comments on commit a8c713e

Please sign in to comment.