rust/tests/ui/pattern/byte-string-inference.rs

16 lines
217 B
Rust

//@ check-pass
fn load<L>() -> Option<L> {
todo!()
}
fn main() {
while let Some(tag) = load() {
match &tag {
b"NAME" => {}
b"DATA" => {}
_ => {}
}
}
}