mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
a6fda3ee7f
Implements MCP 577.
28 lines
638 B
Rust
28 lines
638 B
Rust
// run-pass
|
|
// compile-flags: -C debug_assertions=true
|
|
// needs-unwind
|
|
// ignore-emscripten dies with an LLVM error
|
|
|
|
use std::panic;
|
|
|
|
fn main() {
|
|
macro_rules! overflow_test {
|
|
($t:ident) => (
|
|
let r = panic::catch_unwind(|| {
|
|
($t::MAX).next_power_of_two()
|
|
});
|
|
assert!(r.is_err());
|
|
|
|
let r = panic::catch_unwind(|| {
|
|
(($t::MAX >> 1) + 2).next_power_of_two()
|
|
});
|
|
assert!(r.is_err());
|
|
)
|
|
}
|
|
overflow_test!(u8);
|
|
overflow_test!(u16);
|
|
overflow_test!(u32);
|
|
overflow_test!(u64);
|
|
overflow_test!(u128);
|
|
}
|