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