rust/src/test/ui/const-len-underflow-separate-spans.stderr

24 lines
737 B
Plaintext
Raw Normal View History

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