mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
9 lines
139 B
Rust
9 lines
139 B
Rust
//@ known-bug: #137467
|
|
//@ edition: 2021
|
|
|
|
fn meow(x: (u32, u32, u32)) {
|
|
let f = || {
|
|
let ((0, a, _) | (_, _, a)) = x;
|
|
};
|
|
}
|