From a9fffbc0e0cbd7c6e70b7b516f29bfded69d4b20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lancelot=20de=20Ferri=C3=A8re?= Date: Mon, 12 Jun 2023 17:40:27 +0200 Subject: [PATCH] Cairo_fmt --- tests/bug_samples/issue3130.cairo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/bug_samples/issue3130.cairo b/tests/bug_samples/issue3130.cairo index 17f8ecec707..59d6c0786ed 100644 --- a/tests/bug_samples/issue3130.cairo +++ b/tests/bug_samples/issue3130.cairo @@ -1,7 +1,7 @@ -const a: felt252 = consteval_int!((4 + 2 * 3) * 256); -const b: felt252 = consteval_int!(0xff & (24 + 5 * 2)); -const c: felt252 = consteval_int!(-0xff & (24 + 5 * 2)); -const d: felt252 = consteval_int!(0xff | (24 + 5 * 2)); +const a: felt252 = consteval_int !((4 + 2 * 3) * 256); +const b: felt252 = consteval_int !(0xff & (24 + 5 * 2)); +const c: felt252 = consteval_int !(-0xff & (24 + 5 * 2)); +const d: felt252 = consteval_int !(0xff | (24 + 5 * 2)); #[test] fn main() {}