
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
16 lines
225 B
Rust
16 lines
225 B
Rust
//@ 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() {}
|