8ee79c79aa
Fixes #2806 Fixes #3197 Fixes #3138
47 lines
1.8 KiB
Rust
47 lines
1.8 KiB
Rust
fn with<T>(t: T, f: fn(T)) { f(t) }
|
|
|
|
fn nested(x: &x/int) { // (1)
|
|
do with(
|
|
fn&(x: &x/int, // Refers to the region `x` at (1)
|
|
y: &y/int, // A fresh region `y` (2)
|
|
z: fn(x: &x/int, // Refers to `x` at (1)
|
|
y: &y/int, // Refers to `y` at (2)
|
|
z: &z/int) -> &z/int) // A fresh region `z` (3)
|
|
-> &x/int {
|
|
|
|
if false { return z(x, y, x); }
|
|
|
|
if false { return z(x, y, y); }
|
|
//~^ ERROR cannot infer an appropriate lifetime
|
|
|
|
return z(y, x, x);
|
|
//~^ ERROR mismatched types: expected `&x/int` but found `&y/int`
|
|
//~^^ ERROR mismatched types: expected `&y/int` but found `&x/int`
|
|
}
|
|
) |foo| {
|
|
|
|
let a: &x/int = foo(x, x, |_x, _y, z| z );
|
|
let b: &x/int = foo(x, a, |_x, _y, z| z );
|
|
let c: &x/int = foo(a, a, |_x, _y, z| z );
|
|
|
|
let z = 3i;
|
|
let d: &x/int = foo(x, x, |_x, _y, z| z );
|
|
let e: &x/int = foo(x, &z, |_x, _y, z| z );
|
|
|
|
// This would result in an error, but it is not reported by typeck
|
|
// anymore but rather borrowck. Therefore, it doesn't end up
|
|
// getting printed out since compilation fails after typeck.
|
|
//
|
|
// let f: &x/int = foo(&z, &z, |_x, _y, z| z ); // ERROR mismatched types: expected `&x/int` but found
|
|
|
|
foo(x, &z, |x, _y, _z| x); //~ ERROR mismatched types: expected `&z/int` but found `&x/int`
|
|
|
|
// Note: originally I had foo(x, &z, ...) here, but in that
|
|
// case the region inferencer deduced that this was valid if
|
|
// &y==&static, and so inference would succeed but borrow
|
|
// check would fail because the lifetime of &z is not &static.
|
|
foo(x, x, |_x, y, _z| y); //~ ERROR cannot infer an appropriate lifetime
|
|
}
|
|
}
|
|
|
|
fn main() {} |