]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/pat-tuple-5.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / parser / pat-tuple-5.rs
CommitLineData
a7813a04 1fn main() {
416331ca
XL
2 const PAT: u8 = 0;
3
532ac7d7 4 match (0, 1) {
416331ca
XL
5 (PAT ..) => {}
6 //~^ ERROR `X..` range patterns are not supported
7 //~| ERROR exclusive range pattern syntax is experimental
8 //~| ERROR mismatched types
54a0048b
SL
9 }
10}