@@ -6,7 +6,7 @@ LL | small.into_iter();
66 |
77 = note: `#[warn(array_into_iter)]` on by default
88 = warning: this changes meaning in Rust 2021
9- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
9+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
1010help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
1111 |
1212LL | small.iter();
@@ -23,7 +23,7 @@ LL | [1, 2].into_iter();
2323 | ^^^^^^^^^
2424 |
2525 = warning: this changes meaning in Rust 2021
26- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
26+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
2727help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
2828 |
2929LL | [1, 2].iter();
@@ -40,7 +40,7 @@ LL | big.into_iter();
4040 | ^^^^^^^^^
4141 |
4242 = warning: this changes meaning in Rust 2021
43- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
43+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
4444help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
4545 |
4646LL | big.iter();
@@ -57,7 +57,7 @@ LL | [0u8; 33].into_iter();
5757 | ^^^^^^^^^
5858 |
5959 = warning: this changes meaning in Rust 2021
60- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
60+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
6161help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
6262 |
6363LL | [0u8; 33].iter();
@@ -74,7 +74,7 @@ LL | Box::new(small).into_iter();
7474 | ^^^^^^^^^
7575 |
7676 = warning: this changes meaning in Rust 2021
77- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
77+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
7878help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
7979 |
8080LL | Box::new(small).iter();
@@ -91,7 +91,7 @@ LL | Box::new([1, 2]).into_iter();
9191 | ^^^^^^^^^
9292 |
9393 = warning: this changes meaning in Rust 2021
94- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
94+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
9595help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
9696 |
9797LL | Box::new([1, 2]).iter();
@@ -108,7 +108,7 @@ LL | Box::new(big).into_iter();
108108 | ^^^^^^^^^
109109 |
110110 = warning: this changes meaning in Rust 2021
111- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
111+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
112112help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
113113 |
114114LL | Box::new(big).iter();
@@ -125,7 +125,7 @@ LL | Box::new([0u8; 33]).into_iter();
125125 | ^^^^^^^^^
126126 |
127127 = warning: this changes meaning in Rust 2021
128- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
128+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
129129help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
130130 |
131131LL | Box::new([0u8; 33]).iter();
@@ -142,7 +142,7 @@ LL | Box::new(Box::new(small)).into_iter();
142142 | ^^^^^^^^^
143143 |
144144 = warning: this changes meaning in Rust 2021
145- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
145+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
146146help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
147147 |
148148LL | Box::new(Box::new(small)).iter();
@@ -159,7 +159,7 @@ LL | Box::new(Box::new([1, 2])).into_iter();
159159 | ^^^^^^^^^
160160 |
161161 = warning: this changes meaning in Rust 2021
162- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
162+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
163163help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
164164 |
165165LL | Box::new(Box::new([1, 2])).iter();
@@ -176,7 +176,7 @@ LL | Box::new(Box::new(big)).into_iter();
176176 | ^^^^^^^^^
177177 |
178178 = warning: this changes meaning in Rust 2021
179- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
179+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
180180help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
181181 |
182182LL | Box::new(Box::new(big)).iter();
@@ -193,7 +193,7 @@ LL | Box::new(Box::new([0u8; 33])).into_iter();
193193 | ^^^^^^^^^
194194 |
195195 = warning: this changes meaning in Rust 2021
196- = note: for more information, see issue #66145 <https://github.com/ rust-lang/rust/issues/66145 >
196+ = note: for more information, see <https://doc. rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html >
197197help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
198198 |
199199LL | Box::new(Box::new([0u8; 33])).iter();
0 commit comments