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

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