rust/tests/ui/numbers-arithmetic/overflowing-pow-unsigned.rs
2023-01-11 09:32:08 +00:00

9 lines
207 B
Rust

// 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);
}