]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/pat-tuple-1.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / test / ui / parser / pat-tuple-1.rs
1 fn main() {
2     match (0, 1) {
3         (, ..) => {} //~ ERROR expected pattern, found `,`
4     }
5 }