Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions test_programs/execution_success/regression_5462/Nargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "regression_5462"
type = "bin"
authors = [""]
compiler_version = ">=0.35.0"

[dependencies]
11 changes: 11 additions & 0 deletions test_programs/execution_success/regression_5462/src/main.nr
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
fn main() {
let empty_slice: [u8] = &[];

if empty_slice != &[] {
let _ = empty_slice.pop_front();
}

if empty_slice.len() != 0 {
let _ = empty_slice.pop_front();
}
}
6 changes: 4 additions & 2 deletions test_programs/execution_success/slice_regex/src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ fn main() {
let result = three_ones_regex.match("1111".as_bytes().as_slice());
println(result);
assert_eq(result, Match { succeeded: true, match_ends: 3, leftover: &[] });
// TODO(https://github.com/noir-lang/noir/issues/5462): re-enable these cases and complete the test using array_regex below
// TODO(https://github.com/noir-lang/noir/issues/6285): re-enable these cases and complete the test using array_regex below
//
// // 1*
// let ones_regex: Star<str<1>, 5> = Star { inner: "1" };
Expand Down Expand Up @@ -279,7 +279,9 @@ fn main() {
// });
}

// array_regex: use to complete test once https://github.com/noir-lang/noir/issues/5462 is resolved
// TODO
// array_regex execution_success test:
// use to complete test once https://github.com/noir-lang/noir/issues/6285 is resolved
//
// // offset <= len <= N
// struct Bvec<T, let N: u32> {
Expand Down