rustc/tests/ui/parser/pat-ranges-3.rs
2024-06-19 10:24:51 +02:00

10 lines
236 B
Rust

// Parsing of range patterns
fn main() {
let 10 ..= 10 + 3 = 12;
//~^ error: expected a pattern range bound, found an expression
let 10 - 3 ..= 10 = 8;
//~^ error: expected a pattern range bound, found an expression
}