2022-04-28 08:25:36 -05:00
|
|
|
error[E0282]: type annotations needed
|
2022-02-14 06:25:26 -06:00
|
|
|
--> $DIR/cross-return-site-inference.rs:33:5
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
2022-02-14 06:25:26 -06:00
|
|
|
LL | Ok(())
|
|
|
|
| ^^ cannot infer type of the type parameter `E` declared on the enum `Result`
|
|
|
|
|
|
|
|
|
help: consider specifying the generic arguments
|
|
|
|
|
|
|
|
|
LL | Ok::<(), E>(())
|
|
|
|
| +++++++++
|
2022-02-16 09:48:46 -06:00
|
|
|
|
2022-04-28 08:25:36 -05:00
|
|
|
error[E0282]: type annotations needed
|
2022-10-19 10:17:19 -05:00
|
|
|
--> $DIR/cross-return-site-inference.rs:38:12
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
|
|
|
LL | return Err(From::from("foo"));
|
|
|
|
| ^^^ cannot infer type of the type parameter `E` declared on the enum `Result`
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
2022-02-14 06:25:26 -06:00
|
|
|
help: consider specifying the generic arguments
|
|
|
|
|
|
|
|
|
LL | return Err::<(), E>(From::from("foo"));
|
|
|
|
| +++++++++
|
2022-02-16 09:48:46 -06:00
|
|
|
|
2022-04-28 08:25:36 -05:00
|
|
|
error[E0282]: type annotations needed
|
2022-10-19 10:17:19 -05:00
|
|
|
--> $DIR/cross-return-site-inference.rs:44:5
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
|
|
|
LL | Err(From::from("foo"))
|
|
|
|
| ^^^ cannot infer type of the type parameter `E` declared on the enum `Result`
|
|
|
|
|
|
|
|
|
help: consider specifying the generic arguments
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
2022-02-14 06:25:26 -06:00
|
|
|
LL | Err::<(), E>(From::from("foo"))
|
|
|
|
| +++++++++
|
2022-02-16 09:48:46 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2022-04-28 08:25:36 -05:00
|
|
|
For more information about this error, try `rustc --explain E0282`.
|