Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ known-bug: #137467
//@ edition: 2021
fn meow(x: (u32, u32, u32)) {
let f = || {
let ((0, a, _) | (_, _, a)) = x;
};
}