Sign in
rust
/
rust
/
1f2b0900a702d4947d8f11ea7b162c3af1626e3c
/
.
/
tests
/
ui
/
error-codes
/
E0030.rs
blob: d861360532b51ac0103bb9b6dccdd88ad399a820 [
file
]
fn
main
()
{
match
5u32
{
1000
..=
5
=>
{}
//~^ ERROR lower bound for range pattern must be less than or equal to upper bound
}
}