From add36db6ce4684441b283af08b5c952894798733 Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Wed, 28 Aug 2024 13:50:46 -0300 Subject: [PATCH] Fix test again --- compiler/noirc_frontend/src/tests.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/noirc_frontend/src/tests.rs b/compiler/noirc_frontend/src/tests.rs index 254349f8606..870c781b89d 100644 --- a/compiler/noirc_frontend/src/tests.rs +++ b/compiler/noirc_frontend/src/tests.rs @@ -2430,10 +2430,10 @@ fn use_super() { mod foo { use super::some_func; - } - fn main() { - some_func(); + fn bar() { + some_func(); + } } "#; assert_no_errors(src);