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