blob: 2c917a24e908aa1e030356b86fb0d6ab83beee34 [file] [log] [blame] [edit]
// Test range syntax - syntax errors.
pub fn main() {
let r = 1..2..3;
//~^ ERROR expected one of `.`, `;`, `?`, `else`, or an operator, found `..`
}