rust-clippy/tests/ui/crashes/auxiliary/use_self_macro.rs
2020-01-03 17:03:07 +09:00

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;
}
}
)
}