diff options
Diffstat (limited to '')
-rw-r--r-- | tests/ui/issues/issue-64559.stderr (renamed from src/test/ui/issues/issue-64559.stderr) | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/test/ui/issues/issue-64559.stderr b/tests/ui/issues/issue-64559.stderr index ef178bbd1..386ac794d 100644 --- a/src/test/ui/issues/issue-64559.stderr +++ b/tests/ui/issues/issue-64559.stderr @@ -10,11 +10,8 @@ LL | let _closure = || orig; | | | value used here after move | -note: this function takes ownership of the receiver `self`, which moves `orig` +note: `into_iter` takes ownership of the receiver `self`, which moves `orig` --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL - | -LL | fn into_iter(self) -> Self::IntoIter; - | ^^^^ help: consider iterating over a slice of the `Vec<bool>`'s content to avoid moving into the `for` loop | LL | for _val in &orig {} |