summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/semi-in-let-chain.rs
blob: 9c21af0372d25971750bd864d895488459e6fc3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Issue #117720

#![feature(let_chains)]

fn main() {
    if let () = ()
        && let () = (); //~ERROR
        && let () = ()
    {
    }
}

fn foo() {
    if let () = ()
        && () == (); //~ERROR
        && 1 < 0
    {
    }
}

fn bar() {
    if let () = ()
        && () == (); //~ERROR
        && let () = ()
    {
    }
}