Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
ui
/
error-codes
/
E0029.rs
blob: d9b53e113c01ea14585e5f1f5f2b4183d142ccbe [
file
] [
log
] [
blame
]
fn
main
()
{
let
s
=
"hoho"
;
match
s
{
"hello"
..=
"world"
=>
{}
//~^ ERROR only `char` and numeric types are allowed in range patterns
_
=>
{}
}
}