2024-04-17 16:29:30 -04:00
warning: this method call resolves to `<&[T; N] as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<[T; N] as IntoIterator>::into_iter` in Rust 2021
2021-04-14 12:05:24 -07:00
--> $DIR/into-iter-on-arrays-2018.rs:14:34
2021-04-12 16:07:28 -07:00
|
LL | let _: Iter<'_, i32> = array.into_iter();
2021-05-25 17:56:19 +02:00
| ^^^^^^^^^
2021-04-12 16:07:28 -07:00
|
2021-06-15 17:16:21 +02:00
= warning: this changes meaning in Rust 2021
2021-08-09 17:45:01 +02:00
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html>
2022-09-18 19:55:36 +04:00
= note: `#[warn(array_into_iter)]` on by default
2021-05-25 17:56:19 +02:00
help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
|
LL | let _: Iter<'_, i32> = array.iter();
2021-06-21 19:07:19 -07:00
| ~~~~
2021-05-25 17:56:19 +02:00
help: or use `IntoIterator::into_iter(..)` instead of `.into_iter()` to explicitly iterate by value
|
LL | let _: Iter<'_, i32> = IntoIterator::into_iter(array);
2021-06-21 19:07:19 -07:00
| ++++++++++++++++++++++++ ~
2021-04-12 16:07:28 -07:00
2024-04-17 16:29:30 -04:00
warning: this method call resolves to `<&[T; N] as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<[T; N] as IntoIterator>::into_iter` in Rust 2021
2021-04-14 12:05:24 -07:00
--> $DIR/into-iter-on-arrays-2018.rs:18:44
2021-04-13 12:37:19 -07:00
|
LL | let _: Iter<'_, i32> = Box::new(array).into_iter();
2021-08-30 23:42:48 +02:00
| ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter`
2021-04-13 12:37:19 -07:00
|
2021-06-15 17:16:21 +02:00
= warning: this changes meaning in Rust 2021
2021-08-09 17:45:01 +02:00
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html>
2021-08-30 23:42:48 +02:00
2024-04-17 16:29:30 -04:00
warning: this method call resolves to `<&[T; N] as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<[T; N] as IntoIterator>::into_iter` in Rust 2021
2021-08-30 23:42:48 +02:00
--> $DIR/into-iter-on-arrays-2018.rs:22:43
2021-05-25 17:56:19 +02:00
|
2021-08-30 23:42:48 +02:00
LL | let _: Iter<'_, i32> = Rc::new(array).into_iter();
| ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter`
|
= warning: this changes meaning in Rust 2021
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html>
2024-04-17 16:29:30 -04:00
warning: this method call resolves to `<&[T; N] as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<[T; N] as IntoIterator>::into_iter` in Rust 2021
2021-08-30 23:42:48 +02:00
--> $DIR/into-iter-on-arrays-2018.rs:25:41
2021-05-25 17:56:19 +02:00
|
2021-08-30 23:42:48 +02:00
LL | let _: Iter<'_, i32> = Array(array).into_iter();
| ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter`
|
= warning: this changes meaning in Rust 2021
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html>
2021-04-13 12:37:19 -07:00
2024-04-17 16:29:30 -04:00
warning: this method call resolves to `<&[T; N] as IntoIterator>::into_iter` (due to backwards compatibility), but will resolve to `<[T; N] as IntoIterator>::into_iter` in Rust 2021
2021-08-30 23:42:48 +02:00
--> $DIR/into-iter-on-arrays-2018.rs:32:24
2021-05-25 19:15:48 +02:00
|
LL | for _ in [1, 2, 3].into_iter() {}
| ^^^^^^^^^
|
2021-06-25 17:26:31 +00:00
= warning: this changes meaning in Rust 2021
2021-08-09 17:45:01 +02:00
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/IntoIterator-for-arrays.html>
2021-05-25 19:15:48 +02:00
help: use `.iter()` instead of `.into_iter()` to avoid ambiguity
|
LL | for _ in [1, 2, 3].iter() {}
2021-06-21 19:07:19 -07:00
| ~~~~
2021-05-25 19:15:48 +02:00
help: or remove `.into_iter()` to iterate by value
|
2021-06-21 19:07:19 -07:00
LL - for _ in [1, 2, 3].into_iter() {}
LL + for _ in [1, 2, 3] {}
2022-06-08 20:34:57 +03:00
|
2021-05-25 19:15:48 +02:00
2021-08-30 23:42:48 +02:00
warning: 5 warnings emitted
2021-04-12 16:07:28 -07:00