]> git.lizzy.rs Git - rust.git/blob - src/test/ui/binding/pat-tuple-7.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[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 }