blob: 423dde94f4f53f438a2f2bc46b2ec435f805643d [file] [log] [blame] [edit]
//@ run-rustfix
// Make sure that invalid ranges generate an error during parsing, not an ICE
#![allow(path_statements)]
pub fn main() {
..;
0..;
..1;
0..1;
..; //~ERROR inclusive range with no end
//~^HELP use `..` instead
}
fn _foo1() {
..=1;
0..=1;
0..; //~ERROR inclusive range with no end
//~^HELP use `..` instead
}