2017-11-09 23:07:32 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2017-11-11 14:32:07 -06:00
|
|
|
//revisions: ast mir
|
|
|
|
//[mir] compile-flags: -Z emit-end-regions -Z borrowck-mir -Z nll
|
2017-11-09 23:07:32 -06:00
|
|
|
|
|
|
|
#![allow(unused_assignments)]
|
|
|
|
|
|
|
|
struct Wrap<'a> { w: &'a mut u32 }
|
|
|
|
|
|
|
|
fn foo() {
|
2017-11-11 14:32:07 -06:00
|
|
|
let mut x = 22;
|
2017-11-09 23:07:32 -06:00
|
|
|
let wrapper = Wrap { w: &mut x };
|
2017-11-11 14:32:07 -06:00
|
|
|
x += 1; //[ast]~ ERROR cannot assign to `x` because it is borrowed [E0506]
|
|
|
|
//[mir]~^ ERROR cannot assign to `x` because it is borrowed (Ast) [E0506]
|
|
|
|
//[mir]~^^ ERROR cannot assign to `x` because it is borrowed (Mir) [E0506]
|
|
|
|
//[mir]~^^^ ERROR cannot use `x` because it was mutably borrowed (Mir) [E0503]
|
2017-11-09 23:07:32 -06:00
|
|
|
*wrapper.w += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|