rust/tests/ui/impl-trait/issues/issue-84073.stderr

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

15 lines
561 B
Plaintext
Raw Normal View History

2022-02-17 07:55:58 -06:00
error[E0282]: type annotations needed for `RaceBuilder<T, Never<T>>`
--> $DIR/issue-84073.rs:32:16
|
LL | Race::new(|race| race.when());
| ^^^^ ---- type must be known at this point
2022-02-14 06:25:26 -06:00
|
help: consider giving this closure parameter an explicit type, where the type for type parameter `T` is specified
|
LL | Race::new(|race: RaceBuilder<T, Never<T>>| race.when());
| ++++++++++++++++++++++++++
2022-02-17 07:55:58 -06:00
error: aborting due to 1 previous error
2022-02-17 07:55:58 -06:00
For more information about this error, try `rustc --explain E0282`.