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
4 changes: 2 additions & 2 deletions test_programs/compile_failure/dep_impl_primitive/stderr.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ warning: unused import bad_impl

error: Non-struct type used in impl
┌─ ../../test_libraries/bad_impl/src/lib.nr:1:6
┌─ test_programs/test_libraries/bad_impl/src/lib.nr:1:6
1 │ impl Field {
│ ----- Only struct types may have implementation methods
Expand All @@ -19,4 +19,4 @@ error: No method named 'something' found for type 'Field'
│ -------------

Aborting due to 2 previous errors
Aborting due to 2 previous errors
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Invalid package name `bad-name` found in ../../test_libraries/bad_name/Nargo.toml
Invalid package name `bad-name` found in test_programs/test_libraries/bad_name/Nargo.toml
2 changes: 1 addition & 1 deletion tooling/nargo_cli/tests/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
nargo.arg("--enable-brillig-debug-assertions");

// Enable enums and ownership as unstable features
nargo.arg("-Zenums");

Check warning on line 37 in tooling/nargo_cli/tests/execute.rs

View workflow job for this annotation

GitHub Actions / Code

Unknown word (Zenums)
nargo.arg("-Zownership");

Check warning on line 38 in tooling/nargo_cli/tests/execute.rs

View workflow job for this annotation

GitHub Actions / Code

Unknown word (Zownership)

if force_brillig.0 {
{
Expand Down Expand Up @@ -99,7 +99,7 @@
.lines()
.map(|line| {
line.replace(&test_program_dir, "")
.replace(&test_program_base_dir, "../../")
.replace(&test_program_base_dir, "test_programs/")
.replace(test_program_dir_without_root, "")
})
.collect::<Vec<String>>()
Expand Down
Loading