rust/tests/ui/nll/user-annotations/closure-substs.rs

32 lines
745 B
Rust
Raw Normal View History

2018-10-20 07:38:16 -05:00
// 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-12-11 15:49:40 -06:00
return x; //~ ERROR lifetime may not live long enough
2018-10-22 08:19:33 -05: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 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)| {
2018-12-11 15:49:40 -06:00
b(x); //~ ERROR lifetime may not live long enough
2018-10-22 08:19:33 -05:00
};
}
fn bar1() {
// Here `x` is bound in the closure sig:
2018-10-20 07:38:16 -05:00
|x: &i32, b: fn(&'static i32)| {
b(x); //~ ERROR borrowed data escapes outside of closure
2018-10-20 07:38:16 -05:00
};
}
2018-12-11 15:49:40 -06:00
fn main() {}