]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2005-default-binding-mode/borrowck-issue-49631.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / rfc-2005-default-binding-mode / borrowck-issue-49631.rs
1 // Copyright 2017 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 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
12 pub struct Foo {
13 }
14
15 impl Foo {
16     fn get(&self) -> Option<&Result<String, String>> {
17         None
18     }
19
20     fn mutate(&mut self) { }
21 }
22
23 fn main() {
24     let mut foo = Foo { };
25
26     // foo.get() returns type Option<&Result<String, String>>, so
27     // using `string` keeps borrow of `foo` alive. Hence calling
28     // `foo.mutate()` should be an error.
29     while let Some(Ok(string)) = foo.get() {
30         foo.mutate();
31         //~^ ERROR cannot borrow `foo` as mutable
32         println!("foo={:?}", *string);
33     }
34 }