-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lifetime Pointer to Lifetime Closure Bug #12717
Comments
From what I can tell, the anonymous lifetime assigned to the closure in the |
If "&'a ||" always equals "&'a 'a ||" the second example should work, but neither do I know the specific rules. It is better to have both working or failing, because it is possible to define traits this way and get surprising errors in the impl. |
This is the code where I discovered the bug: When I change to "&'a 'a ||" in the trait it gives me this lifetime error. If I change to "&'a ||" in the trait it gives me same error as the first example. Maybe these two bugs are related? rustc 0.10-pre (0a5138c 2014-03-04 13:16:41 -0800)
pub trait Expr<'a, T> {
fn then(&'a self, f: &'a 'a ||) -> T;
}
impl<'a> Expr<'a, ()> for () {
fn then(&'a self, f: &'a 'a ||) -> () {
(*f)();
}
}
pub struct Action<'a> {
f: Option<&'a 'a ||>,
next: Option<&'a Action<'a>>,
}
impl<'a> Action<'a> {
pub fn new(f: &'a 'a ||) -> Action<'a> {
Action { f: Some(f), next: None }
}
pub fn run(&self) {
match self.next {
Some(action) => action.run(),
None => {},
}
match self.f {
None => {},
Some(f) => (*f)(),
};
}
}
impl<'a> Expr<'a, Action<'a>> for Action<'a> {
fn then(&'a self, f: &'a 'a ||) -> Action<'a> {
Action { f: Some(f), next: Some(self) }
}
}
pub fn main() {
let x = || println!("Hello!");
let y = || println!("Again!");
let z = || println!("So...");
().then(&x).then(&y).then(&z);
Action::new(&x).then(&y).then(&z).run();
}
Compiler error:
impl2.rs:46:2: 46:4 error: cannot infer an appropriate lifetime for region in type/impl due to conflicting requirements
impl2.rs:46 ().then(&x).then(&y).then(&z);
^~
impl2.rs:48:2: 48:26 note: first, the lifetime must be contained by the method call at 48:1...
impl2.rs:48 Action::new(&x).then(&y).then(&z).run();
^~~~~~~~~~~~~~~~~~~~~~~~
impl2.rs:48:2: 48:17 note: ...so that method receiver is valid for the method call
impl2.rs:48 Action::new(&x).then(&y).then(&z).run();
^~~~~~~~~~~~~~~
impl2.rs:46:10: 46:12 note: but, the lifetime must also be contained by the expression at 46:9...
impl2.rs:46 ().then(&x).then(&y).then(&z); |
Interestingly, with #12828 both work. Maybe we can close this bug? |
Triage: both examples fail, but because of calling a closure through |
fixes rust-lang#12717. r? @xFrednet ---- changelog: add [`io_other_error`] lint
I was told in the IRC channel the bug is Test::new missing a "'a" and should give the same warning as Test2::new.
The text was updated successfully, but these errors were encountered: