summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-len-underflow-separate-spans.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-len-underflow-separate-spans.rs')
-rw-r--r--src/test/ui/consts/const-len-underflow-separate-spans.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/ui/consts/const-len-underflow-separate-spans.rs b/src/test/ui/consts/const-len-underflow-separate-spans.rs
index 7c3d1f320..478761aef 100644
--- a/src/test/ui/consts/const-len-underflow-separate-spans.rs
+++ b/src/test/ui/consts/const-len-underflow-separate-spans.rs
@@ -5,8 +5,7 @@
const ONE: usize = 1;
const TWO: usize = 2;
const LEN: usize = ONE - TWO;
-//~^ ERROR any use of this value will cause an error
-//~| WARN this was previously accepted by the compiler but is being phased out
+//~^ ERROR constant
fn main() {
let a: [i8; LEN] = unimplemented!();