2018-10-20 08:38:16 -04:00
|
|
|
// Test that we enforce user-provided type annotations on closures.
|
|
|
|
|
|
|
|
fn foo<'a>() {
|
2018-10-22 09:19:33 -04:00
|
|
|
// Here `x` is free in the closure sig:
|
2018-10-20 08:38:16 -04:00
|
|
|
|x: &'a i32| -> &'static i32 {
|
2018-12-11 15:49:40 -06:00
|
|
|
return x; //~ ERROR lifetime may not live long enough
|
2018-10-22 09:19:33 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo1() {
|
|
|
|
// Here `x` is bound in the closure sig:
|
|
|
|
|x: &i32| -> &'static i32 {
|
2018-12-11 15:49:40 -06:00
|
|
|
return x; //~ ERROR lifetime may not live long enough
|
2018-10-20 08:38:16 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar<'a>() {
|
2018-10-22 09:19:33 -04:00
|
|
|
// Here `x` is free in the closure sig:
|
|
|
|
|x: &'a i32, b: fn(&'static i32)| {
|
2018-12-11 15:49:40 -06:00
|
|
|
b(x); //~ ERROR lifetime may not live long enough
|
2018-10-22 09:19:33 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar1() {
|
|
|
|
// Here `x` is bound in the closure sig:
|
2018-10-20 08:38:16 -04:00
|
|
|
|x: &i32, b: fn(&'static i32)| {
|
2018-10-22 11:20:17 -04:00
|
|
|
b(x); //~ ERROR borrowed data escapes outside of closure
|
2018-10-20 08:38:16 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-11 15:49:40 -06:00
|
|
|
fn main() {}
|