]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/pat-tuple-7.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[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 }