Sign in
◑
Theme
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
error-codes
/
E0029.rs
blob: d9b53e113c01ea14585e5f1f5f2b4183d142ccbe [
file
]
fn
main
()
{
let
s
=
"hoho"
;
match
s
{
"hello"
..=
"world"
=>
{}
//~^ ERROR only `char` and numeric types are allowed in range patterns
_
=>
{}
}
}