summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/issue-27282-move-match-input-into-guard.rs
blob: 85feda5824b408420932a7cd33e64f4d9075db59 (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
28
29
30
31
32
33
34
// Issue 27282: Example 2: This sidesteps the AST checks disallowing
// mutable borrows in match guards by hiding the mutable borrow in a
// guard behind a move (of the mutably borrowed match input) within a
// closure.
//
// This example is not rejected by AST borrowck (and then reliably
// reaches the panic code when executed, despite the compiler warning
// about that match arm being unreachable.

#![feature(if_let_guard)]

fn main() {
    let b = &mut true;
    match b {
        //~^ ERROR use of moved value: `b` [E0382]
        &mut false => {},
        _ if { (|| { let bar = b; *bar = false; })();
                     false } => { },
        &mut true => { println!("You might think we should get here"); },
        _ => panic!("surely we could never get here, since rustc warns it is unreachable."),
    }

    let b = &mut true;
    match b {
        //~^ ERROR use of moved value: `b` [E0382]
        &mut false => {}
        _ if let Some(()) = {
            (|| { let bar = b; *bar = false; })();
            None
        } => {}
        &mut true => {}
        _ => {}
    }
}