-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
src/test/ui/borrowck/return-local-binding-from-desugaring.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// To avoid leaking the names of local bindings from expressions like for loops, #60984 | ||
// explicitly ignored them, but an assertion that `LocalKind::Var` *must* have a name would | ||
// trigger an ICE. Before this change, this file's output would be: | ||
// ``` | ||
// error[E0515]: cannot return value referencing local variable `__next` | ||
// --> return-local-binding-from-desugaring.rs:LL:CC | ||
// | | ||
// LL | for ref x in xs { | ||
// | ----- `__next` is borrowed here | ||
// ... | ||
// LL | result | ||
// | ^^^^^^ returns a value referencing data owned by the current function | ||
// ``` | ||
// FIXME: ideally `LocalKind` would carry more information to more accurately explain the problem. | ||
|
||
use std::collections::HashMap; | ||
use std::hash::Hash; | ||
|
||
fn group_by<I, F, T>(xs: &mut I, f: F) -> HashMap<T, Vec<&I::Item>> | ||
where | ||
I: Iterator, | ||
F: Fn(&I::Item) -> T, | ||
T: Eq + Hash, | ||
{ | ||
let mut result = HashMap::new(); | ||
for ref x in xs { | ||
let key = f(x); | ||
result.entry(key).or_insert(Vec::new()).push(x); | ||
} | ||
result //~ ERROR cannot return value referencing local binding | ||
} | ||
|
||
fn main() {} |
2 changes: 1 addition & 1 deletion
2
src/test/ui/borrowck/issue-63026.stderr → ...turn-local-binding-from-desugaring.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters