rust-clippy/tests/ui/auxiliary/use_self_macro.rs

15 lines
300 B
Rust

macro_rules! use_self {
(
impl $ty:ident {
fn func(&$this:ident) {
[fields($($field:ident)*)]
}
}
) => (
impl $ty {
fn func(&$this) {
let $ty { $($field),* } = $this;
}
}
)
}