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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
217 B
Rust
Raw Permalink Normal View History

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