summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-len-underflow-subspans.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-len-underflow-subspans.rs')
-rw-r--r--src/test/ui/consts/const-len-underflow-subspans.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/consts/const-len-underflow-subspans.rs b/src/test/ui/consts/const-len-underflow-subspans.rs
deleted file mode 100644
index ed77e9078..000000000
--- a/src/test/ui/consts/const-len-underflow-subspans.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// Check that a constant-evaluation underflow highlights the correct
-// spot (where the underflow occurred).
-
-const ONE: usize = 1;
-const TWO: usize = 2;
-
-fn main() {
- let a: [i8; ONE - TWO] = unimplemented!();
- //~^ ERROR evaluation of constant value failed
- //~| attempt to compute `1_usize - 2_usize`, which would overflow
-}