Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
pattern
/
byte-string-inference.rs
blob: c49f599bc9bfd7c027ee52e382760bd754b3bc50 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
fn
load
<
L
>()
->
Option
<
L
>
{
todo
!()
}
fn
main
()
{
while
let
Some
(
tag
)
=
load
()
{
match
&
tag
{
b
"NAME"
=>
{}
b
"DATA"
=>
{}
_
=>
{}
}
}
}