]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25579.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-25579.rs
1 // Copyright 2015 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 // revisions: ast mir
12 //[mir]compile-flags: -Z borrowck=mir
13
14 #![feature(rustc_attrs)]
15
16 enum Sexpression {
17     Num(()),
18     Cons(&'static mut Sexpression)
19 }
20
21 fn causes_error_in_ast(mut l: &mut Sexpression) {
22     loop { match l {
23         &mut Sexpression::Num(ref mut n) => {},
24         &mut Sexpression::Cons(ref mut expr) => { //[ast]~ ERROR [E0499]
25             l = &mut **expr; //[ast]~ ERROR [E0506]
26         }
27     }}
28 }
29
30 #[rustc_error]
31 fn main() { //[mir]~ ERROR compilation successful
32 }