-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(perf): Remove known store values that equal the store address in…
… mem2reg (noir-lang/noir#5935) feat: remove blocks which consist of only a jump to another block (noir-lang/noir#5889) fix: use element_size() instead of computing it with division (noir-lang/noir#5939) feat: Add `StructDefinition::set_fields` (noir-lang/noir#5931) feat: Only check array bounds in brillig if index is unsafe (noir-lang/noir#5938) chore: error on false constraint (noir-lang/noir#5890) feat: warn on unused functions (noir-lang/noir#5892) feat: add `fmtstr::contents` (noir-lang/noir#5928) fix: collect functions generated by attributes (noir-lang/noir#5930) fix: Support debug comptime flag for attributes (noir-lang/noir#5929) feat: Allow inserting new structs and into programs from attributes (noir-lang/noir#5927) feat: module attributes (noir-lang/noir#5888) feat: unquote some value as tokens, not as unquote markers (noir-lang/noir#5924) feat: check argument count and types on attribute function callback (noir-lang/noir#5921) feat: LSP will now suggest private items if they are visible (noir-lang/noir#5923)
- Loading branch information
Showing
7 changed files
with
118 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9d2629dd1bb28a8c2ecb4c33d26119da75d626c2 | ||
b84009ca428a5790acf53a6c027146b706170574 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
noir/noir-repo/test_programs/execution_failure/empty_composite_array_get/Nargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[package] | ||
name = "empty_composite_array_get" | ||
type = "bin" | ||
authors = [""] | ||
compiler_version = ">=0.32.0" | ||
|
||
[dependencies] |
1 change: 1 addition & 0 deletions
1
noir/noir-repo/test_programs/execution_failure/empty_composite_array_get/Prover.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
empty_input = [] |
5 changes: 5 additions & 0 deletions
5
noir/noir-repo/test_programs/execution_failure/empty_composite_array_get/src/main.nr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
fn main(empty_input: [(Field, Field); 0]) { | ||
let empty_array: [(Field, Field); 0] = []; | ||
let _ = empty_input[0]; | ||
let _ = empty_array[0]; | ||
} |