2014-07-22 04:27:46 -05:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Check that the 'static bound on a proc influences lifetimes of
|
|
|
|
// region variables contained within (otherwise, region inference will
|
|
|
|
// give `x` a very short lifetime).
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static i: usize = 3;
|
2014-11-26 07:12:18 -06:00
|
|
|
fn foo<F:FnOnce()+'static>(_: F) {}
|
2015-03-25 19:06:52 -05:00
|
|
|
fn read(_: usize) { }
|
2014-07-22 04:27:46 -05:00
|
|
|
pub fn main() {
|
|
|
|
let x = &i;
|
2014-11-26 07:12:18 -06:00
|
|
|
foo(move|| {
|
2014-07-22 04:27:46 -05:00
|
|
|
read(*x);
|
|
|
|
});
|
|
|
|
}
|