Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
error-codes
/
E0030.rs
blob: a5d8f87261b2b5da3d20201f1d386fc9e8d0431b [
file
] [
log
] [
blame
]
fn
main
()
{
match
5u32
{
1000
..=
5
=>
{}
//~^ ERROR lower range bound must be less than or equal to upper
//~| ERROR lower range bound must be less than or equal to upper
}
}