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