2017-12-10 22:47:55 +03:00
|
|
|
error[E0586]: inclusive range with no end
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/impossible_range.rs:8:8
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | ..=;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
|
|
|
|
|
|
|
|
error[E0586]: inclusive range with no end
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/impossible_range.rs:15:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | 0..=;
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^
|
|
|
|
|
|
|
|
|
= help: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0586`.
|