Skip to content

Commit

Permalink
chore: Restore lost integration test (#2062)
Browse files Browse the repository at this point in the history
  • Loading branch information
phated authored Jul 26, 2023
1 parent 64e40f2 commit 7377c67
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nargo_cli/tests/test_data_ssa_refactor/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ exclude = []


# List of tests (as their directory name) expecting to fail: if the test pass, we report an error.
fail = ["brillig_assert_fail"]
fail = ["brillig_assert_fail", "dep_impl_primitive"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "dep_impl_primitive"
authors = [""]
compiler_version = "0.8.0"

[dependencies]
bad_impl = { path = "../../test_libraries/bad_impl" }
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
x = 1
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
use dep::bad_impl;

fn main(x : Field) {
x.something();
}

0 comments on commit 7377c67

Please sign in to comment.