Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
numbers-arithmetic
/
overflowing-pow-unsigned.rs
blob: f2643c1646316c7f25cdb69c2cee572ac76276a5 [
file
] [
log
] [
blame
]
// run-fail
// error-pattern:thread 'main' panicked at 'attempt to multiply with overflow'
// ignore-emscripten no processes
// compile-flags: -C debug-assertions
fn
main
()
{
let
_x
=
2u32.pow
(
1024
);
}