Skip to content

Commit

Permalink
Add regression test for #18566
Browse files Browse the repository at this point in the history
  • Loading branch information
murarth committed Nov 10, 2014
1 parent a30b72b commit 67a6944
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/test/compile-fail/issue-18566.rs
@@ -0,0 +1,33 @@
// Copyright 2014 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.

#![feature(tuple_indexing)]

struct MyPtr<'a>(&'a mut uint);
impl<'a> Deref<uint> for MyPtr<'a> {
fn deref<'b>(&'b self) -> &'b uint { self.0 }
}

trait Tr {
fn poke(&self, s: &mut uint);
}

impl Tr for uint {
fn poke(&self, s: &mut uint) {
*s = 2;
}
}

fn main() {
let s = &mut 1u;

MyPtr(s).poke(s);
//~^ ERROR cannot borrow `*s` as mutable more than once at a time
}

9 comments on commit 67a6944

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 12, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at murarth@67a6944

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 12, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging murarth/rust/issue-18566-test = 67a6944 into auto

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 12, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

murarth/rust/issue-18566-test = 67a6944 merged ok, testing candidate = 8e2381dc

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 12, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at murarth@67a6944

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging murarth/rust/issue-18566-test = 67a6944 into auto

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

murarth/rust/issue-18566-test = 67a6944 merged ok, testing candidate = 6a62ad3

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 67a6944 Nov 13, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 6a62ad3

Please sign in to comment.