2018-10-20 07:38:16 -05:00
|
|
|
#![feature(nll)]
|
|
|
|
|
|
|
|
// Test that we enforce user-provided type annotations on closures.
|
|
|
|
|
|
|
|
fn foo<'a>() {
|
2018-10-22 08:19:33 -05:00
|
|
|
// Here `x` is free in the closure sig:
|
2018-10-20 07:38:16 -05:00
|
|
|
|x: &'a i32| -> &'static i32 {
|
2018-10-22 08:19:33 -05:00
|
|
|
return x; //~ ERROR unsatisfied lifetime constraints
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo1() {
|
|
|
|
// Here `x` is bound in the closure sig:
|
|
|
|
|x: &i32| -> &'static i32 {
|
|
|
|
return x; //~ ERROR unsatisfied lifetime constraints
|
2018-10-20 07:38:16 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar<'a>() {
|
2018-10-22 08:19:33 -05:00
|
|
|
// Here `x` is free in the closure sig:
|
|
|
|
|x: &'a i32, b: fn(&'static i32)| {
|
|
|
|
b(x); //~ ERROR unsatisfied lifetime constraints
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar1() {
|
|
|
|
// Here `x` is bound in the closure sig:
|
2018-10-20 07:38:16 -05:00
|
|
|
|x: &i32, b: fn(&'static i32)| {
|
2018-10-22 10:20:17 -05:00
|
|
|
b(x); //~ ERROR borrowed data escapes outside of closure
|
2018-10-20 07:38:16 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|