Skip to content

Commit

Permalink
Update library/core/tests/num/int_macros.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Ralf Jung <post@ralfj.de>
  • Loading branch information
oli-obk and RalfJung authored Feb 1, 2024
1 parent 0350d5d commit 824521d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/tests/num/int_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ macro_rules! int_module {
assert_eq!(r.saturating_pow(2), 4 as $T);
assert_eq!(r.saturating_pow(3), -8 as $T);
assert_eq!(r.saturating_pow(0), 1 as $T);
assert_eq!(2u64.checked_pow(64), None);
assert_eq!(2u64.checked_pow(64), None); // issue #120537
}

#[test]
Expand Down

0 comments on commit 824521d

Please sign in to comment.