-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
RPITIT is allowed to name any in-scope lifetime parameter, unlike inherent RPIT methods #112194
Comments
This is even more problematic when considering you can capture early-bound lifetimes not named by the opaque: #![feature(async_fn_in_trait)]
#![feature(return_position_impl_trait_in_trait)]
use std::future::Future;
pub trait Trait {
fn foo<'a: 'a>(&'a self) -> impl Future<Output = ()>;
}
pub struct S;
impl Trait for S {
async fn foo<'s: 's>(&'s self) -> () {}
}
fn main() {} but not late-bound ones1: #![feature(async_fn_in_trait)]
#![feature(return_position_impl_trait_in_trait)]
use std::future::Future;
pub trait Trait {
fn foo<'a>(&'a self) -> impl Future<Output = ()>;
}
pub struct S;
impl Trait for S {
async fn foo<'s>(&'s self) -> () {}
//~^ ERROR `impl` item signature doesn't match `trait` item signature
}
fn main() {} Footnotes
|
Perhaps we should consider example (1.) from my previous comment to be a refinement since it references a function lifetime parameter that isn't mentioned by the opaque, and deny it. What to do with self types is a bit more delicate, as you noted above, and I have no idea what the best choice is there. |
…ures, r=oli-obk Error when RPITITs' hidden types capture more lifetimes than their trait definitions This implements a stricter set of captures rules for RPITITs. They now may only capture: 1. Lifetimes from the impl header (both the self type and any trait substs -- we may want to restrict just to the self type's lifetimes, but the PR makes that easy to do, too) 2. Lifetimes mentioned by the `impl Trait` in the trait method's definition. Namely, they may not mention lifetimes from the method (early or late) that are not mentioned in the `impl Trait`. cc rust-lang#105258 which I think was trying to do this too, though I'm not super familiar with what exactly differs from that or why that one was broken. cc rust-lang#112194 (doesn't fix this issue per se, because it's still an open question, but I think this is objectively better than the status quo, and gets us closer to resolving that issue.) Technically is a fix for the ICE in rust-lang#108580, but it turns that issue into an error now. We can decide separately whether or not nested RPITITs should capture lifetimes from their parents. r? `@oli-obk`
…ures, r=oli-obk Error when RPITITs' hidden types capture more lifetimes than their trait definitions This implements a stricter set of captures rules for RPITITs. They now may only capture: 1. Lifetimes from the impl header (both the self type and any trait substs -- we may want to restrict just to the self type's lifetimes, but the PR makes that easy to do, too) 2. Lifetimes mentioned by the `impl Trait` in the trait method's definition. Namely, they may not mention lifetimes from the method (early or late) that are not mentioned in the `impl Trait`. cc rust-lang#105258 which I think was trying to do this too, though I'm not super familiar with what exactly differs from that or why that one was broken. cc rust-lang#112194 (doesn't fix this issue per se, because it's still an open question, but I think this is objectively better than the status quo, and gets us closer to resolving that issue.) Technically is a fix for the ICE in rust-lang#108580, but it turns that issue into an error now. We can decide separately whether or not nested RPITITs should capture lifetimes from their parents. r? ``@oli-obk``
I noticed (while responding to this comment by @aliemjay) that there's an inconsistency in how we handle returning
Self
if it captures lifetimes. For both inherent methods and RPITIT, if you write-> impl Trait
and then returnself
on an impl for a type that containing a lifetime, we give you an error:However, if you write
-> Self
on an implementation of a trait method that's written with-> impl Trait
, there is no error (though this would require#[refine]
with RFC 3245):playground
First, this inconsistency is weird from a user perspective because it seems like the capture rules say what lifetimes your hidden type is allowed to reference, and such a property can only be strengthened by an implementation (by referencing fewer, or longer-lived, lifetimes than the trait allows), never weakened. But here, the implementation specifies it a concrete type which allows it to name additional lifetimes.
If we could I we would say we should probably accept all of these examples and consider
Self
to be a type parameter in how we interpret RFC 1951. That said, I don't think it's possible to change today given that you can depend on the return type not referencing the lifetime.Given that, we should probably apply the same restriction to RPITIT for the sake of consistency and not allow it to name any lifetime parameters as we assume it can today (including through
Self
). Though this might create other issues I'm not thinking of.cc @compiler-errors
The text was updated successfully, but these errors were encountered: