From 6e905dbe57939d009022d512912b5aac06994ce8 Mon Sep 17 00:00:00 2001 From: Akosh Farkash Date: Wed, 16 Oct 2024 01:47:06 +0100 Subject: [PATCH] Tweak stdlib meta to ignore the new warning --- noir_stdlib/src/meta/mod.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noir_stdlib/src/meta/mod.nr b/noir_stdlib/src/meta/mod.nr index f756be364b1..92da34f6302 100644 --- a/noir_stdlib/src/meta/mod.nr +++ b/noir_stdlib/src/meta/mod.nr @@ -256,6 +256,6 @@ mod tests { let _: MyOtherStruct = MyOtherStruct { my_other_field: 2 }; let _ = derive_do_nothing(crate::panic::panic(f"")); let _ = derive_do_nothing_alt(crate::panic::panic(f"")); - remove_unused_warnings(); + if false { remove_unused_warnings(); } } }