]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-27282-reborrow-ref-mut-in-guard.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-27282-reborrow-ref-mut-in-guard.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Issue 27282: This is a variation on issue-27282-move-ref-mut-into-guard.rs
12 //
13 // It reborrows instead of moving the `ref mut` pattern borrow. This
14 // means that our conservative check for mutation in guards will
15 // reject it. But I want to make sure that we continue to reject it
16 // (under NLL) even when that conservaive check goes away.
17
18
19 #![feature(bind_by_move_pattern_guards)]
20 #![feature(nll)]
21
22 fn main() {
23     let mut b = &mut true;
24     match b {
25         &mut false => {},
26         ref mut r if { (|| { let bar = &mut *r; **bar = false; })();
27         //~^ ERROR cannot borrow `r` as mutable, as it is immutable for the pattern guard
28                              false } => { &mut *r; },
29         &mut true => { println!("You might think we should get here"); },
30         _ => panic!("surely we could never get here, since rustc warns it is unreachable."),
31     }
32 }