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