-
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
[nll] better error message when returning refs to upvars #53040
Comments
FnMut
closure in some cases where AST-borrowck accepted it
tagging this with T-lang because it is one of the first cases on #52663 that I think they may want to dive into with @nikomatsakis |
It seems correct to reject this code as an I hit a similar issue with the current implementation of async closures in that they don't ever allow mutation of upvars because the returned closure-as-a-future can't be tied to the lifetime of the call to the closure. It would seem like mutation would be fine so long as the outer closure is |
Its also important to note that @nikomatsakis 's comment (#49824 (comment)) was for a slightly different scenario, namely this (#49824 (comment)) fn main() {
let mut x = 0;
|| {
|| {
let _y = &mut x;
}
};
} I'd need to review the list of instances here more carefully to determine whether every case that we hit has the same sort of issue (where if the user adds At the very least we could try to tell them to do that as a hint. |
Note that AST borrowck rejects this if you try to call the closure. |
I'm not going to tag this with a particular NLL- triage label at the moment; I suspect @nikomatsakis will want to do so at the next WG-compiler-nll meeting. I suspect the tag should be one of:
|
OK, so, I've been seeing a number of quasi-duplicates of this (e.g., #51354). It took me a bit to understand what was going on so I'm going to copy my comment from that issue here for reference:
It seems to me then that this is indeed an NLL-diagnostics issue (and, to some extent, NLL-fixed-by-NLL). NLL is correctly rejecting these programs. This is a case where our existing closure inference (which does not take region relationships into account) is not "equipped" to handle that these closures are I am interested in potentially finding ways to improve the inference but that feels like an orthogonal job from NLL and one that we should do via a distinct RFC. |
FnMut
closure in some cases where AST-borrowck accepted it
Moving to Edition RC 2. |
So this example (adapted from #51354): #![feature(nll)]
fn main() {
let mut v: Vec<()> = Vec::new();
|| &mut v;
} Currently gives this error:
This is "ok" but not great. The note is in the right direction: the key problem here is that this is a |
I think I would like an error like:
Maybe moving those last two notes to an "extended error" description? I'm not sure if/when to offer |
Indeed the captured That leads me to wonder whether we should be suggesting some kind of explicit type ascription in order to force it to be an fn id<'a>(f: impl FnOnce() -> &'a mut Vec<()>) -> &'a mut Vec<()> {
f()
}
fn foo() {
let mut v: Vec<()> = Vec::new();
id(|| &mut v).push(());
assert_eq!(v.len(), 1);
} |
[nll] better error message when returning refs to upvars Fixes #53040. r? @nikomatsakis
In an example like:
rust/src/test/ui/issue-40510-1.rs
Lines 14 to 20 in 59fa6bd
AST-borrowck accepts such code, but NLL will start rejecting it.
@nikomatsakis concluded in a comment back in April (#49824 (comment)) that similar code (or at least it looks similar to me) is in fact incorrect, and decided that NLL was correct in rejecting such cases.
This issue is just marking that this change in semantics has occurred, so that I can link to it from places like #52663
Known instances:
The text was updated successfully, but these errors were encountered: