]> git.proxmox.com Git - rustc.git/blame - src/test/ui/binding/pat-tuple-7.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / binding / pat-tuple-7.rs
CommitLineData
b7449926 1// run-pass
a7813a04
XL
2
3fn main() {
0bf4aa26 4 #[allow(unused_parens)]
0531ce1d
XL
5 match 0 {
6 (pat) => assert_eq!(pat, 0)
7 }
54a0048b 8}