rust/tests/ui/parser/pat-ranges-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
139 B
Rust
Raw Normal View History

2015-04-03 05:56:27 +03:00
// Parsing of range patterns
2015-02-19 22:01:57 +08:00
fn main() {
let macropus!() ..= 11 = 12; //~ error: expected one of `:`, `;`, `=`, or `|`, found `..=`
2015-02-19 22:01:57 +08:00
}