Skip to content

Commit

Permalink
Cairo_fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
wraitii committed Jun 12, 2023
1 parent c10f79a commit a9fffbc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/bug_samples/issue3130.cairo
Original file line number Diff line number Diff line change
@@ -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() {}

0 comments on commit a9fffbc

Please sign in to comment.