1
Fork 0
rust/src/test/ui/impossible_range.stderr

20 lines
495 B
Text
Raw Normal View History

error[E0586]: inclusive range with no end
2018-12-25 08:56:47 -07:00
--> $DIR/impossible_range.rs:8:8
|
2019-03-09 15:03:44 +03:00
LL | ..=;
| ^
|
= 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
|
2019-03-09 15:03:44 +03:00
LL | 0..=;
| ^
|
= 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`.