2018-06-27 07:55:06 -05:00
|
|
|
error[E0080]: referenced constant has errors
|
2018-06-27 06:36:30 -05:00
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:20:17
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | const LEN: usize = ONE - TWO;
|
2018-06-25 13:53:02 -05:00
|
|
|
| --------- attempt to subtract with overflow
|
|
|
|
...
|
|
|
|
LL | let a: [i8; LEN] = unimplemented!();
|
|
|
|
| ^^^
|
|
|
|
|
2018-06-27 07:55:06 -05:00
|
|
|
error[E0080]: could not evaluate constant
|
2018-06-27 06:36:30 -05:00
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:20:17
|
2018-06-25 13:53:02 -05:00
|
|
|
|
|
|
|
|
LL | let a: [i8; LEN] = unimplemented!();
|
|
|
|
| ^^^ referenced constant has errors
|
2018-03-05 03:21:11 -06:00
|
|
|
|
2018-06-27 07:55:06 -05:00
|
|
|
error[E0080]: referenced constant has errors
|
2018-06-27 06:36:30 -05:00
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:20:12
|
2018-06-02 20:01:06 -05:00
|
|
|
|
|
|
|
|
LL | const LEN: usize = ONE - TWO;
|
|
|
|
| --------- attempt to subtract with overflow
|
|
|
|
...
|
|
|
|
LL | let a: [i8; LEN] = unimplemented!();
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2018-06-02 16:38:57 -05:00
|
|
|
error[E0080]: could not evaluate constant expression
|
2018-06-27 06:36:30 -05:00
|
|
|
--> $DIR/const-len-underflow-separate-spans.rs:20:12
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let a: [i8; LEN] = unimplemented!();
|
2018-06-02 16:38:57 -05:00
|
|
|
| ^^^^^---^
|
|
|
|
| |
|
|
|
|
| referenced constant has errors
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2018-06-27 07:55:06 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|