]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/pat-tuple-7.rs
Merge commit '5988bbd24aa87732bfa1d111ba00bcdaa22c481a' into sync_cg_clif-2020-11-27
[rust.git] / src / test / ui / binding / pat-tuple-7.rs
1 // run-pass
2
3 fn main() {
4     #[allow(unused_parens)]
5     match 0 {
6         (pat) => assert_eq!(pat, 0)
7     }
8 }