summaryrefslogtreecommitdiffstats
path: root/src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs')
-rw-r--r--src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs b/src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs
deleted file mode 100644
index b59efe6f2..000000000
--- a/src/test/ui/numbers-arithmetic/overflowing-pow-signed.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-// 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);
-}