mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
410 B
Rust
19 lines
410 B
Rust
// run-pass
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
// 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).
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
static i: usize = 3;
|
|
fn foo<F:FnOnce()+'static>(_: F) {}
|
|
fn read(_: usize) { }
|
|
pub fn main() {
|
|
let x = &i;
|
|
foo(move|| {
|
|
read(*x);
|
|
});
|
|
}
|