Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
parser
/
pat-ranges-3.rs
blob: 419768a2a2022fd19d94849105823b5ab0db3a69 [
file
] [
log
] [
blame
]
// 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
}