Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
pat-ranges-3.rs
blob: 419768a2a2022fd19d94849105823b5ab0db3a69 [
file
] [
log
] [
blame
] [
edit
]
// 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
}