Skip to content

Commit

Permalink
Rollup merge of rust-lang#34136 - imjacobclark:ice-test-case-25579, r…
Browse files Browse the repository at this point in the history
…=nikomatsakis

Test case for borrowk ICE rust-lang#25579

r? @nikomatsakis

Fixes rust-lang#25579
  • Loading branch information
sanxiyn committed Jun 10, 2016
2 parents cef62e3 + 4c5f3a6 commit 874227a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/test/compile-fail/issue-25579.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Copyright 2015 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.

enum Sexpression {
Num(()),
Cons(&'static mut Sexpression)
}

fn causes_ice(mut l: &mut Sexpression) {
loop { match l {
&mut Sexpression::Num(ref mut n) => {},
&mut Sexpression::Cons(ref mut expr) => { //~ ERROR cannot borrow `l.0`
//~| ERROR cannot borrow `l.0`
l = &mut **expr; //~ ERROR cannot assign to `l`
}
}}
}

fn main() {
}

0 comments on commit 874227a

Please sign in to comment.