Files
rust/tests/ui/borrowck/string-borrowing-pattern-matching-11869.rs
2025-08-02 15:29:16 -04:00

18 lines
275 B
Rust

// https://github.com/rust-lang/rust/issues/11869
//@ check-pass
#![allow(dead_code)]
struct A {
a: String
}
fn borrow<'a>(binding: &'a A) -> &'a str {
match &*binding.a {
"in" => "in_",
"ref" => "ref_",
ident => ident
}
}
fn main() {}