]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/suggest-tryinto-edition-change.stderr
Rollup merge of #92612 - atopia:update-lib-l4re, r=dtolnay
[rust.git] / src / test / ui / suggestions / suggest-tryinto-edition-change.stderr
1 error[E0433]: failed to resolve: use of undeclared type `TryFrom`
2   --> $DIR/suggest-tryinto-edition-change.rs:11:19
3    |
4 LL |     let _i: i16 = TryFrom::try_from(0_i32).unwrap();
5    |                   ^^^^^^^ not found in this scope
6    |
7    = note: 'std::convert::TryFrom' is included in the prelude starting in Edition 2021
8    = note: 'core::convert::TryFrom' is included in the prelude starting in Edition 2021
9 help: consider importing one of these items
10    |
11 LL | use core::convert::TryFrom;
12    |
13 LL | use std::convert::TryFrom;
14    |
15
16 error[E0433]: failed to resolve: use of undeclared type `TryInto`
17   --> $DIR/suggest-tryinto-edition-change.rs:17:19
18    |
19 LL |     let _i: i16 = TryInto::try_into(0_i32).unwrap();
20    |                   ^^^^^^^ not found in this scope
21    |
22    = note: 'std::convert::TryInto' is included in the prelude starting in Edition 2021
23    = note: 'core::convert::TryInto' is included in the prelude starting in Edition 2021
24 help: consider importing one of these items
25    |
26 LL | use core::convert::TryInto;
27    |
28 LL | use std::convert::TryInto;
29    |
30
31 error[E0433]: failed to resolve: use of undeclared type `FromIterator`
32   --> $DIR/suggest-tryinto-edition-change.rs:23:22
33    |
34 LL |     let _v: Vec<_> = FromIterator::from_iter(&[1]);
35    |                      ^^^^^^^^^^^^
36    |
37   ::: $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
38    |
39 LL | pub trait IntoIterator {
40    | ---------------------- similarly named trait `IntoIterator` defined here
41    |
42    = note: 'std::iter::FromIterator' is included in the prelude starting in Edition 2021
43    = note: 'core::iter::FromIterator' is included in the prelude starting in Edition 2021
44 help: a trait with a similar name exists
45    |
46 LL |     let _v: Vec<_> = IntoIterator::from_iter(&[1]);
47    |                      ~~~~~~~~~~~~
48 help: consider importing one of these items
49    |
50 LL | use core::iter::FromIterator;
51    |
52 LL | use std::iter::FromIterator;
53    |
54
55 error[E0599]: no method named `try_into` found for type `i32` in the current scope
56   --> $DIR/suggest-tryinto-edition-change.rs:6:25
57    |
58 LL |     let _i: i16 = 0_i32.try_into().unwrap();
59    |                         ^^^^^^^^ method not found in `i32`
60    |
61   ::: $SRC_DIR/core/src/convert/mod.rs:LL:COL
62    |
63 LL |     fn try_into(self) -> Result<T, Self::Error>;
64    |        -------- the method is available for `i32` here
65    |
66    = help: items from traits can only be used if the trait is in scope
67    = note: 'std::convert::TryInto' is included in the prelude starting in Edition 2021
68 help: the following trait is implemented but not in scope; perhaps add a `use` for it:
69    |
70 LL | use std::convert::TryInto;
71    |
72
73 error: aborting due to 4 previous errors
74
75 Some errors have detailed explanations: E0433, E0599.
76 For more information about an error, try `rustc --explain E0433`.