Skip to content

Commit

Permalink
merge conflicts after #3187 merged w/ master
Browse files Browse the repository at this point in the history
  • Loading branch information
vezenovm committed Nov 3, 2023
2 parents 750f2ad + e026319 commit 1577442
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion compiler/noirc_evaluator/src/ssa/acir_gen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,6 @@ impl Context {
} else {
vec![]
};

let dummy = self.array_get_value(
&store_type,
block_id,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use dep::std::println;

struct FooParent {
parent_arr: [Field; 3],
foos: [Foo],
Expand Down Expand Up @@ -115,11 +113,8 @@ fn main(y : pub Field) {

assert(foo_parents[y - 2].foos[y - 1].a == 7);
foo_parents[y - 2].foos[y - 1].a = 50;
assert(foo_parents[y - 2].foos[y - 1].a == 50);

let b_array = foo_parents[y - 2].foos[y - 1].b;
assert(b_array[0] == 8);
assert(b_array[1] == 9);
assert(b_array[2] == 22);
assert(b_array.len() == 3);

Expand Down

0 comments on commit 1577442

Please sign in to comment.