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