Skip to content

Commit b6b35ef

Browse files
authored
fix: add missing generic (#44)
1 parent 2974b8e commit b6b35ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_comparison_tools/bounds_checker.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ fn test_get_validity_flags() {
9191

9292
#[test(should_fail)]
9393
fn test_get_validity_flags_fail() {
94-
let _ = get_validity_flags(33);
94+
let _: [Field; 33] = get_validity_flags(33);
9595
}
9696

9797
#[test(should_fail)]

0 commit comments

Comments
 (0)