2020-10-19 16:42:57 +00:00
|
|
|
error[E0283]: type annotations needed
|
|
|
|
--> $DIR/issue-77982.rs:8:10
|
|
|
|
|
|
|
|
|
LL | opts.get(opt.as_ref());
|
2022-08-16 06:27:22 +00:00
|
|
|
| ^^^ ------------ type must be known at this point
|
|
|
|
| |
|
|
|
|
| cannot infer type of the type parameter `Q` declared on the associated function `get`
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
= note: multiple `impl`s satisfying `String: Borrow<_>` found in the following crates: `alloc`, `core`:
|
|
|
|
- impl Borrow<str> for String;
|
|
|
|
- impl<T> Borrow<T> for T
|
|
|
|
where T: ?Sized;
|
2021-10-05 23:04:09 +00:00
|
|
|
note: required by a bound in `HashMap::<K, V, S>::get`
|
|
|
|
--> $SRC_DIR/std/src/collections/hash/map.rs:LL:COL
|
2022-08-16 06:27:22 +00:00
|
|
|
help: consider specifying the generic argument
|
2021-10-05 23:04:09 +00:00
|
|
|
|
|
|
|
|
LL | opts.get::<Q>(opt.as_ref());
|
|
|
|
| +++++
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
|
|
error[E0283]: type annotations needed
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-77982.rs:8:10
|
2021-10-01 13:05:17 +00:00
|
|
|
|
|
|
|
|
LL | opts.get(opt.as_ref());
|
2022-08-17 00:21:40 +00:00
|
|
|
| ^^^ ------ type must be known at this point
|
|
|
|
| |
|
2022-06-25 16:28:27 +00:00
|
|
|
| cannot infer type of the type parameter `Q` declared on the associated function `get`
|
2021-10-01 13:05:17 +00:00
|
|
|
|
|
|
|
|
= note: multiple `impl`s satisfying `String: AsRef<_>` found in the following crates: `alloc`, `std`:
|
|
|
|
- impl AsRef<OsStr> for String;
|
|
|
|
- impl AsRef<Path> for String;
|
|
|
|
- impl AsRef<[u8]> for String;
|
|
|
|
- impl AsRef<str> for String;
|
2022-02-14 12:25:26 +00:00
|
|
|
help: consider specifying the generic argument
|
|
|
|
|
|
|
|
|
LL | opts.get::<Q>(opt.as_ref());
|
|
|
|
| +++++
|
2021-10-01 13:05:17 +00:00
|
|
|
|
|
|
|
error[E0283]: type annotations needed
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-77982.rs:13:59
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
|
|
|
LL | let ips: Vec<_> = (0..100_000).map(|_| u32::from(0u32.into())).collect();
|
2022-06-25 16:28:27 +00:00
|
|
|
| --------- ^^^^
|
|
|
|
| |
|
2022-08-17 00:21:40 +00:00
|
|
|
| required by a bound introduced by this call
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
2022-12-11 01:39:00 +00:00
|
|
|
= note: multiple `impl`s satisfying `u32: From<_>` found in the following crates: `core`, `std`:
|
|
|
|
- impl From<Ipv4Addr> for u32;
|
|
|
|
- impl From<NonZeroU32> for u32;
|
|
|
|
- impl From<bool> for u32;
|
|
|
|
- impl From<char> for u32;
|
|
|
|
- impl From<u16> for u32;
|
|
|
|
- impl From<u8> for u32;
|
|
|
|
- impl<T> From<!> for T;
|
|
|
|
- impl<T> From<T> for T;
|
2022-02-14 12:25:26 +00:00
|
|
|
help: try using a fully qualified path to specify the expected types
|
|
|
|
|
|
|
|
|
LL | let ips: Vec<_> = (0..100_000).map(|_| u32::from(<u32 as Into<T>>::into(0u32))).collect();
|
|
|
|
| +++++++++++++++++++++++ ~
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
|
|
error[E0283]: type annotations needed for `Box<T>`
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-77982.rs:36:9
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
|
|
|
LL | let _ = ().foo();
|
2022-08-17 00:21:40 +00:00
|
|
|
| ^ --- type must be known at this point
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
note: multiple `impl`s satisfying `(): Foo<'_, _>` found
|
|
|
|
--> $DIR/issue-77982.rs:29:1
|
|
|
|
|
|
|
|
|
LL | impl Foo<'static, u32> for () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | impl<'a> Foo<'a, i16> for () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-14 12:25:26 +00:00
|
|
|
help: consider giving this pattern a type, where the type for type parameter `T` is specified
|
|
|
|
|
|
|
|
|
LL | let _: Box<T> = ().foo();
|
|
|
|
| ++++++++
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
|
|
error[E0283]: type annotations needed for `Box<T>`
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-77982.rs:40:9
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
|
|
|
LL | let _ = (&()).bar();
|
2022-08-17 00:21:40 +00:00
|
|
|
| ^ --- type must be known at this point
|
2020-10-19 16:42:57 +00:00
|
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
note: multiple `impl`s satisfying `&(): Bar<'_, _>` found
|
|
|
|
--> $DIR/issue-77982.rs:32:1
|
|
|
|
|
|
|
|
|
LL | impl<'a> Bar<'static, u32> for &'a () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | impl<'a> Bar<'a, i16> for &'a () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-14 12:25:26 +00:00
|
|
|
help: consider giving this pattern a type, where the type for type parameter `T` is specified
|
|
|
|
|
|
|
|
|
LL | let _: Box<T> = (&()).bar();
|
|
|
|
| ++++++++
|
2020-10-19 16:42:57 +00:00
|
|
|
|
2022-08-17 00:21:40 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2020-10-19 16:42:57 +00:00
|
|
|
|
2022-08-17 00:21:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0283`.
|