about summary refs log tree commit diff
path: root/src/test/ui/parser/range-4.rs
blob: 20af9567205796cff3dc146b81d4c68fb460ee04 (plain)
1
2
3
4
5
6
// Test range syntax - syntax errors.

pub fn main() {
    let r = ..1..2;
    //~^ ERROR expected one of `.`, `;`, `?`, or an operator, found `..`
}