rust/tests/ui/impl-trait/cross-return-site-inference.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
Plaintext
Raw Normal View History

error[E0282]: type annotations needed
2022-02-14 06:25:26 -06:00
--> $DIR/cross-return-site-inference.rs:33:5
|
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>(())
| +++++++++
error[E0282]: type annotations needed
--> $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-14 06:25:26 -06:00
help: consider specifying the generic arguments
|
LL | return Err::<(), E>(From::from("foo"));
| +++++++++
error[E0282]: type annotations needed
--> $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-14 06:25:26 -06:00
LL | Err::<(), E>(From::from("foo"))
| +++++++++
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0282`.