summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs
blob: b59efe6f21278f16aae2240a0a54de8375076abb (plain)
1
2
3
4
5
6
7
8
// 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 = 2i32.pow(1024);
}