rust/src/test/compile-fail/regions-nested-fns.rs

20 lines
434 B
Rust
Raw Normal View History

fn ignore<T>(t: T) {}
fn nested(x: &x/int) {
let y = 3;
let mut ay = &y; //~ ERROR cannot infer an appropriate lifetime
ignore(fn&(z: &z/int) {
ay = x;
ay = &y; //~ ERROR cannot infer an appropriate lifetime
ay = z;
});
ignore(fn&(z: &z/int) -> &z/int {
2012-08-01 19:30:05 -05:00
if false { return x; } //~ ERROR mismatched types
if false { return ay; }
2012-08-01 19:30:05 -05:00
return z;
});
}
fn main() {}