2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2012-04-05 11:10:14 -05:00
|
|
|
fn ignore<T>(t: T) {}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn nested<'x>(x: &'x isize) {
|
2012-04-05 11:10:14 -05:00
|
|
|
let y = 3;
|
2016-03-17 03:15:06 -05:00
|
|
|
let mut ay = &y; //~ ERROR E0495
|
2012-04-05 11:10:14 -05:00
|
|
|
|
2015-02-15 02:52:21 -06:00
|
|
|
ignore::<Box<for<'z> FnMut(&'z isize)>>(Box::new(|z| {
|
2016-03-17 03:15:06 -05:00
|
|
|
ay = x;
|
2013-03-15 14:24:24 -05:00
|
|
|
ay = &y;
|
2012-08-13 17:06:13 -05:00
|
|
|
ay = z;
|
2015-02-15 02:52:21 -06:00
|
|
|
}));
|
2012-04-05 11:10:14 -05:00
|
|
|
|
2015-02-15 02:52:21 -06:00
|
|
|
ignore::< Box<for<'z> FnMut(&'z isize) -> &'z isize>>(Box::new(|z| {
|
2016-03-17 03:15:06 -05:00
|
|
|
if false { return x; } //~ ERROR E0312
|
2012-08-13 17:06:13 -05:00
|
|
|
if false { return ay; }
|
2012-08-01 19:30:05 -05:00
|
|
|
return z;
|
2015-02-15 02:52:21 -06:00
|
|
|
}));
|
2012-04-05 11:10:14 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
fn main() {}
|