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