summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/issue-74702.rs
blob: 0aeb3b217a26ff8771c9fb67a4943eaf9a1b4ea1 (plain)
1
2
3
4
5
6
7
fn main() {
    let (foo @ ..,) = (0, 0);
    //~^ ERROR: `foo @` is not allowed in a tuple
    //~| ERROR: `..` patterns are not allowed here
    //~| ERROR: mismatched types
    dbg!(foo);
}