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

20 lines
393 B
Rust
Raw Normal View History

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