2018-05-11 12:33:37 +00:00
|
|
|
error: attempt to subtract with overflow
|
2018-03-06 11:43:02 +00:00
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:17:20
|
|
|
|
|
|
|
|
|
LL | const LEN: usize = ONE - TWO;
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-05-11 12:33:37 +00:00
|
|
|
= note: #[deny(const_err)] on by default
|
2018-03-06 11:43:02 +00:00
|
|
|
|
2017-12-10 19:47:55 +00:00
|
|
|
error[E0080]: constant evaluation error
|
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:17:20
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | const LEN: usize = ONE - TWO;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^^ attempt to subtract with overflow
|
2018-03-05 09:21:11 +00:00
|
|
|
|
2018-06-02 21:38:57 +00:00
|
|
|
error[E0080]: could not evaluate constant expression
|
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:22:12
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | let a: [i8; LEN] = unimplemented!();
|
2018-06-02 21:38:57 +00:00
|
|
|
| ^^^^^---^
|
|
|
|
| |
|
|
|
|
| referenced constant has errors
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-05-11 12:33:37 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|