Sign in
◑
Theme
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
rfcs
/
rfc-2005-default-binding-mode
/
slice.rs
blob: 363a0e3e649d9a5fe66432509252cd7ad9ca9291 [
file
]
pub
fn
main
()
{
let
sl
:
&[
u8
]
=
b
"foo"
;
match
sl
{
//~ ERROR non-exhaustive patterns
[
first
,
remainder
@
..]
=>
{},
};
}