Sign in
fuchsia
/
third_party
/
rust
/
7e8ef3a818df467df052d1b06faab79045afd3ee
/
.
/
tests
/
ui
/
parser
/
pat-ranges-3.rs
blob: 419768a2a2022fd19d94849105823b5ab0db3a69 [
file
]
// 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
}